Using Android, what are the open-source option for face recognition.
Asked
Active
Viewed 1.1e+01k times
75
-
1check out the open CV (Computer Vision) library Android port @ http://opencv.willowgarage.com/wiki/Android – evandrix Aug 18 '11 at 01:37
-
@Roshan Wijesena which approach you used? I used opencv and its working but the output i want to get is like if i scan my face in beard and next scan my picture w/o beard it must be scan and recognize. but currently i am getting its recognizing same face as it scanned prior. – Devendra Singh Mar 18 '16 at 08:17
4 Answers
48
Here are some links that I found on face recognition libraries.
- Android's FaceDetector.Face
- Tutorial: Implementing Face Detection in Android
- OpenCV Facerecog
Image Identification links:

A. Abiri
- 10,750
- 4
- 30
- 31
-
3A couple more links: http://fivedots.coe.psu.ac.th/~ad/jg/nui08/ and http://code.google.com/p/javafaces/ – earcam Aug 11 '11 at 16:45
-
1
-
@A.Abiri any tutorial of Ltutech ? i m stuck how to use this SDK I downloaded and imporeted in my eclipse. now how to send request from my android for face recognition – Qadir Hussain Jun 09 '14 at 06:46
-
-
Yes, most developers today still use either the Android SDK's built-in face recognition API or OpenCV for face recognition. – A. Abiri Apr 19 '15 at 22:06
-
41I'd like to add, that 'Face Recognition' is different from 'Face Detection'. What A.Abiri answered is all about FaceDetection – ABI Oct 12 '15 at 10:43
-
1
1
You can try Microsoft's Face API. It can detect and identify people. learn more about face API here.

VivekRajendran
- 676
- 1
- 6
- 21
-1
macgyver offers face detection programs via a simple to use API.
The program below takes a reference to a public image and will return an array of the coordinates and dimensions of any faces detected in the image.
https://askmacgyver.com/explore/program/face-location/5w8J9u4z

Timothy Moody
- 479
- 1
- 7
- 9
-2
You use class media.FaceDetector in android to detect face for free.
This is an example of face detection: https://github.com/betri28/FaceDetectCamera

Minh Tri Nguyen
- 107
- 4