Android 4.0 Face Recognition?

Android 4.0 now supports Face Recognition to unlock your phone . Is this functionality available as INTENT , which other applications can use for identification?

Note. I'm not talking about Face Detection , which is supported in the API.

thanks

+4
source share
2 answers

It looks like a new face detection element was built into the Camera stack (maybe oversignt?) And can be found in Camera.Face - It seems you start with Camera.startFaceDetection () after setting the listener

I did not do more than pondering the API docs, so I don’t know if this is all that is needed, but this should help you get started in the right direction.

0
source

I would try

face2.equals(face2);

0
source

All Articles