Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Live face detection in Android

I'm trying to implement face detection with the camera preview in Android. Does someone know any (open-source) libraries that can help me do this?

like image 593
ItFlyingStart Avatar asked Feb 23 '23 02:02

ItFlyingStart


2 Answers

OpenCV library has the Android port and provides face detection as one of samples for Android platform. Here is a tutorial to start with.

like image 133
Andrey Kamaev Avatar answered Mar 03 '23 05:03

Andrey Kamaev


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

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

like image 23
Frohnzie Avatar answered Mar 03 '23 07:03

Frohnzie