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
0
votes
0 answers

Video face recognition and comparing with the image using Emgu 3.2.0

dear developers. It's my first time to ask someone here. Last week I got the task from my supervisor: To develop the software to compare the visitors' faces appearing on camera with the photos from their member-cards. After a deep research, it…
BaltoZor
  • 1
  • 3
0
votes
1 answer

How to build Dlib model used for android development?

I want to develop an android APP about face recognition.I want to use the dlib model(dlib_face_recognition_resnet_model_v1.dat)to get the face feature vector.I never do something about android development.What I want to ask is how can I port the…
0
votes
0 answers

What method does Microsoft Face API use for face comparison?

I've been working on a facial detection and recognition program for a few days now in OpenCV using Eigen/Fisher/LBPH FaceRecognizers that will compare the faces in two photos using the 3 listed recognizers and return a confidence value that the…
0
votes
3 answers

ValueError: min_faces_per_person=70 is too restrictive

I'm practicing Faces recognition example using eigenfaces and SVMs which is on the official scikit-learn…
0
votes
1 answer

Detect a face while my cam is open

i need to build an app with just a cam view, and it should detect my cam is looking at a face, can anyone point me in the right direction? I have built something that detects a face on an image, but i need to work with a cam, here is what i have…
user3411226
  • 183
  • 1
  • 14
0
votes
1 answer

How to get textOperations and Get Result?

I need to do a "Post" to get the textOperations and use this received value to do a "Get" and return the results. I'm doing the "Post" however I do not get anything in console.log (), how do I get this "id" received and use it in "Get" to return the…
user8250085
0
votes
1 answer

Facial expressions identification like snapchat

I am working on app that detect eye blink of the user. I have been searching the web for 2 days but still don't have clear vision about how this can be done. As far as i have knew is that the system supports face detection which is detecting if…
Mohammad Haidar
  • 1,109
  • 1
  • 16
  • 35
0
votes
1 answer

SURF with hashing

I want to ask you if i can use hashing technique with SURF algorithm,i made a program to make face recognition by matching test image with saved image dataset. i used Accord.net and made bag of features by BOW of this library then I made ID3…
0
votes
0 answers

OpenCV compare faces with small resolution images | Python

Step 1. Detect faces in an image, crop the faces, and save them. Image shape: [1000, 970, 3] Step 2. Compare the smaller cropped images with the original image and see if enough matches are found, and whether they are the correct matches. (Eye to…
code
  • 2,115
  • 1
  • 22
  • 46
0
votes
1 answer

Emgu CV Image Capture using C#

I'm using the Emgu CV 2.4.0.1717 and whenever I declare the Mat class it does not exist. I am trying to create an application using c# that can capture an image. This is for my Facial Recognition project. I was trying to declare a Mat object but…
redpranger
  • 21
  • 1
  • 1
  • 5
0
votes
1 answer

EMgucv save multiple face detected from webcam

I have window application which will detect multiple face and capture the face and save as image. I use the EMGU CV to do the face detection, I learn from the sample code and tutorial. When it need to capture the face as a trained dataset, it…
Bubble Bub
  • 651
  • 4
  • 12
  • 32
0
votes
1 answer

Kairos Face Recognition - Python 2: Receiving 403 Forbidden error when I try to upload a photo

I am trying to make the Kairos example code for enroll (http://docs.kairosv1.apiary.io/#reference/face-recognition/enroll/post) work on my home computer, but it gives me this error: File "C:\Python27\lib\urllib2.py", line 556, in http_error_default …
Daniel Lewis
  • 88
  • 2
  • 9
0
votes
1 answer

Import face_recognition by python on ubuntu

I am trying to play around with face_recognition on python, but after I pip install the face_recognition module everytime I try to import face_recognition I get the following error messages: import face_recognition Traceback (most recent call…
0
votes
0 answers

Decision tree with SURF algorithm in Accord.net

I want to make a decision tree for face recognition. I have made this simple program to learn just 8 images and I don't know if it will finally work. (I used Accord.Net because it is a really good library.....thanks César Souza). BagOfVisualWords…
0
votes
0 answers

How to read data from landmarks files of Adience benchmark?

I'm trying to properly read the data corresponding to the landmarks files of the Adience benchmark, but I can't find an accurate way to parse them. Please can someone help me?
fbr
  • 98
  • 1
  • 1
  • 9