Live face recognition in Android

I am trying to implement face detection with camera preview in Android. Does anyone know of any (open source) libraries that can help me?

+4
source share
4 answers

The OpenCV library has an Android port and provides face recognition as one of the samples for the Android platform. Below is a tutorial .

+5
source

JavaCV is a Java binding to OpenCV with Android support. It also supports a number of other Computer Vision libraries.

http://code.google.com/p/javacv/

+2
source

Is there a reason you need to use the opencv external library?

Could you use the built-in android? android.media.FaceDetector;

+1
source
0
source

All Articles