Open source face recognition for Android

JavaAndroidFace Recognition

Java Problem Overview


Using Android, what are the open-source option for face recognition.

Java Solutions


Solution 1 - Java

Here are some links that I found on face recognition libraries.

Image Identification links:

Solution 2 - Java

You can try Microsoft's Face API. It can detect and identify people. learn more about face API here.

Solution 3 - Java

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

Solution 4 - Java

You use class media.FaceDetector in android to detect face for free.

This is an example of face detection: https://github.com/betri28/FaceDetectCamera

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRoshan WijesenaView Question on Stackoverflow
Solution 1 - JavaA. AbiriView Answer on Stackoverflow
Solution 2 - JavaVivekRajendranView Answer on Stackoverflow
Solution 3 - JavaTimothy MoodyView Answer on Stackoverflow
Solution 4 - JavaMinh Tri NguyenView Answer on Stackoverflow