Questions tagged [face-recognition]

Face recognition is the process of matching faces to determine if the person shown in one image is the same as the person shown in another image. This is distinct from face detection which only determines where an image exists a face. Face recognition has broad use in security technology, social networking, cameras, etc.

Face recognition is the process of matching faces to determine if the person shown in one image is the same as the person shown in another image. This is distinct from face detection which only determines where in an image exists a face. Face recognition is part of a larger class of biometric technologies.

There are two main modes of face recognition, one to one (where two faces are compared to each other) and one to many (where one face is matched against many faces). There are a number of free and open source and commercial face recognition tools and libraries. Face recognition is built into cameras, social networking sites (like Facebook), photo sharing sites (like PicasaWeb), and smart phones (like modern iPhone and Android phones).

1818 questions
15
votes
3 answers

Face recognition in Java

Can any one suggest me an open source face recognition framework in Java?
user189352
  • 855
  • 4
  • 18
  • 26
15
votes
2 answers

Face Recognition on Android

I'm trying to develop a Face Recognition app on Android and since I don't want to use NDK on the project (simply don't have the time to switch), I'm sticking to develop the whole app with Java and therefor I'm having some problems : It seems the…
Cypher
  • 2,374
  • 4
  • 24
  • 36
14
votes
2 answers

Face authentication to unlock my app programmatically

I am developing an android app which uses fingerprint/face recognition for unlocking the app. I have successfully integrated fingerprint authentication using BiometricPrompt. But didn't know where to start for Face authentication. Any headsup will…
Kanagalingam
  • 2,096
  • 5
  • 23
  • 40
14
votes
2 answers

Android Face recognition & get similar faces from the database

In my application I'm going to implement an image search like Google image search. Only difference is here I'm searching only for human faces. Here's how it goes.. user take a picture of a person using the camera. my app should identify the face of…
Ramesh Jaya
  • 671
  • 1
  • 10
  • 16
13
votes
5 answers

module jdk.compiler does not "opens com.sun.tools.javac.processing" to unnamed module @4bae33a6

I cloned this Project from Github https://github.com/PacktPublishing/Java-Machine-Learning-for-Computer-Vision.git I am going to use the FaceRecognizition from this project. But as soon as I try to run this in IntelliJ I get this error java:…
13
votes
3 answers

Open CV Face Recognition not accurate

In my app I'm trying to do face recognition on a specific image using Open CV, here first I'm training one image and then after training that image if I run face recognition on that image it successfully recognizes that trained face. However, when I…
R.Coder
  • 257
  • 3
  • 17
13
votes
2 answers

How to find out detected face is real or fake

I am developing one security related project, there is need to check any face is detected or not, if face is detected then do some action, if face is not detected then close app. Everything is perfect working, i am using SurfaceView which is…
Yogesh Rathi
  • 6,331
  • 4
  • 51
  • 81
13
votes
5 answers

Attribute error while using opencv for face recognition

I am teaching myself how to use openCV by writing a simple face recognition program I found on youtube. I have installed opencv version 2 as well as numpy 1.8.0. I am using python 2.7. I copyed this code exactly how it was done in the video and…
RatstabOfficial
  • 479
  • 2
  • 8
  • 14
13
votes
4 answers

3D Object Detection-Opencv

I have tried face recognition using OpenCV using the documentation provided on their wiki. Its working fine and it can detect multiple faces. However there is no data provided on the site regarding 3D object detection or head tracking. The links to…
praxmon
  • 5,009
  • 22
  • 74
  • 121
12
votes
2 answers

GStreamer warning: Cannot query video position: status=0, value=-1, duration=-1

I am using the OpenCV package with the face_recognition package to detect faces on my laptop webcam. Whenever I run it, the code runs fine but I run into the same GStreamer error. from imutils.video import VideoStream import face_recognition import…
Kai Strachan
  • 141
  • 1
  • 1
  • 4
12
votes
2 answers

Biometrics with iris and face recognition

In blog Better Biometrics in Android P they said: "To keep users safe, most apps and devices have an authentication mechanism, or a way to prove that you're you. These mechanisms fall into three categories: knowledge factors, possession factors, and…
Hoa.Tran
  • 935
  • 10
  • 26
12
votes
3 answers

Face recognition authentication in android

Similar to fingerprint authentication for apps, i am trying to implement face recognition authentication in one of my android app. Can anyone guide me on how to achieve the same using any library or anything.
imi
  • 259
  • 1
  • 3
  • 14
12
votes
2 answers

why is shape-indexed-feature so effective on face alignment?

I am implementing some face alignment algorithm recently. I have read the following papers: Supervised descent method and its applications to face alignment Face alignment by explicit shape regression Face alignment at 3000 fps via regressing local…
tidy
  • 4,747
  • 9
  • 49
  • 89
12
votes
5 answers

Face Recognition for classifying digital photos?

I like to mess around with AI and wanted to try my hand at face recognition the first step is to find the faces in the photographs. How is this usually done? Do you use convolution of a sample image/images or statistics based methods? How do you…
Jeremy E
  • 3,704
  • 2
  • 28
  • 46
11
votes
3 answers

Classify faces from VNFaceObservation

I'm working with Vision framework to detect faces and objects on multiple images and works fantastic. But I have a question that I can't find on documentation. The Photos app on iOS classify faces and you can click on face and show all the images…
mhergon
  • 1,688
  • 1
  • 18
  • 39