Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/blundell/facedetectiontutorial
Simple Android front camera face detection
https://github.com/blundell/facedetectiontutorial
Last synced: 2 months ago
JSON representation
Simple Android front camera face detection
- Host: GitHub
- URL: https://github.com/blundell/facedetectiontutorial
- Owner: blundell
- Created: 2014-09-13T10:01:24.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-13T11:36:22.000Z (over 10 years ago)
- Last Synced: 2023-03-24T03:42:47.167Z (almost 2 years ago)
- Language: Java
- Homepage: http://blog.blundell-apps.com/tut-front-camera-face-detection-explained/
- Size: 242 KB
- Stars: 10
- Watchers: 3
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
FaceDetectionTutorial
=====================Explantory tutorial can be found here: http://blog.blundell-apps.com/tut-front-camera-face-detection-explained/
Load your front facing camera like this
`FrontCameraRetriever.retrieveFor(context);`
Listen for face detection like this
```java
camera.initialise(new FaceDetectionCamera.Listener() {
@Override
public void onFaceDetected() {
}@Override
public void onFaceTimedOut() {}
@Override
public void onFaceDetectionNonRecoverableError() {}
});
```