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
8
votes
2 answers

How can I perform facial recogntion on iOS?

I've started work on an application for iOS that would recognize faces from a photo or from the iPhone / iPad camera. Existing solutions like OpenCV and Core Image (in iOS 5.0) provide facial detection within an image, but I can't find a library or…
Mateus Nunes
  • 91
  • 1
  • 6
8
votes
1 answer

In pycharm ImportError: DLL load failed: The specified module could not be found. while importing facerecognition

I am getting this error while importing "face_recognition" in Pycharm but it runs perfectly fine from "anaconda command prompt". I don't understand why i am getting error in Pycharm but not in Anaconda cmd. I can successfully import cv2 in Pycharm.…
Games Lover
  • 127
  • 1
  • 1
  • 9
8
votes
3 answers

How to check if dlib is using GPU or not?

My machine has Geforce 940mx GDDR5 GPU. I have installed all requirements to run GPU accelerated dlib (with GPU support): CUDA 9.0 toolkit with all 3 patches updates from…
rahulreddy
  • 101
  • 1
  • 1
  • 2
8
votes
1 answer

How do I programmatically access the facial recognition cache in Windows Live Photo Gallery with SQL?

I'm not talking about the "people tags" embeded in the XMP packets of JPEGs. I'm talking about the face database used to recognize new faces. I want to add to my program the option to recognize faces using the already trained database of WLPG. I…
8
votes
4 answers

how to save/crop detected faces in dlib python

i want to save the detected face in dlib by cropping the rectangle do anyone have any idea how can i crop it. i am using dlib first time and having so many problems. i also want to run the fisherface algorithm on the detected faces but it is giving…
Irum Zahra Awan
  • 276
  • 1
  • 5
  • 16
8
votes
1 answer

How to get 3D coordinate Axes of head pose estimation in Dlib C++

Dlib C++ can detect landmark and estimate face pose very well. However, how can I get 3D coordinate Axes direction (x,y,z) of head pose?
Rain Maker
  • 152
  • 1
  • 3
  • 6
8
votes
1 answer

Is there any open technology to recognize face features?

I need to make baby face depending on parents' photos. Something like: http://www.makemebabies.com/ It may be not very advanced and may just try to recognize, for example, eyes from constant set of eyes variants in database. The main feature is to…
bobrik
  • 161
  • 3
8
votes
2 answers

Open set face recognition - what score to give to query faces not present in gallery?

Scenario: In closed-set face recognition, if we have 10 people in a Gallery set, then the query images will be from among these 10 people. Each query will thus be assigned to one of the 10 people. In open-set face recognition, query faces may come…
AruniRC
  • 5,070
  • 7
  • 43
  • 73
8
votes
1 answer

What is confidence in OpenCV's FaceRecognizer?

I've been working on a face recognition project using OpenCV's FaceRecognizer, doing gender differentiation. The algorithm works pretty well, but I wanted to implement some extra features into my program like the confidence of the prediction. The…
hammerhands
  • 99
  • 1
  • 1
  • 2
8
votes
2 answers

How to develop a Face recognition iPhone app?

I am trying to develop an iPhone for Face recognition/detection. In my app i want to make my iPhone camera should be auto focused and auto capture. How to recognition the face from iPhone app? It is possible to auto focus the face and auto capture…
Gopinath
  • 5,392
  • 21
  • 64
  • 97
7
votes
1 answer

How to integrate face and objects recognition using ip cameras?

Setting a stage, in a district there are 200 + analog cameras to a central monitoring station, but these cameras do not have recognition of faces or objects. Is it possible to implement face detection to these cameras? Are there any prerequisites…
7
votes
0 answers

Overlay transparent circle on camera preview in Android

Recently Uber has released a Face Recognition feature and I'm trying to create a similar camera preview it looks like this : I need to create a transparent circle to focus the users face to the camera. I have tried to create it from some other…
7
votes
3 answers

Dlib "Error deserializing object of type short"

I am getting error on pose_predictor = dlib.shape_predictor(predictor_model) on dlib python. RuntimeError: Error deserializing object of type short while deserializing a floating point number. while deserializing a dlib::matrix while…
Musab Hussain
  • 85
  • 1
  • 2
  • 5
7
votes
3 answers

How to install Openface in windows python

I am a newbie to Openface. Due to some reasons I want to install Openface in windows with python. It would be great if anyone could guide me through that. I have searched online, but not a single article talks about windows python installation. May…
7
votes
1 answer

Android/Java Face Recognition: gender, age, emotions

Is there any simple library/framework for Android/Java which can detect a face on a picture and give me some information about the person on the picture? I mean information like gender, age, emotions (smiling, sadness, anger) ... I have tried Face++…