Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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() {

}
});
```