Face reconization in android

119 views Asked by At

I want to compare the 2 images(images of people)and want a result that these are of same person or not(By Face recognization).I have to do this for millions of images so I cannot do it manually .Is there any api for android that can be used in my app.

1

There are 1 answers

0
AnZ On

You could use Camera.Face or FaceDetector.Face class. Take parameters of face on both photos and compare their parameters using e.g. eyesDistance(). If those parameters quite the same -> its the same person.