Questions tagged [face-detection]

Face detection is a computer technology that determines the locations and sizes of human faces in arbitrary (digital) images. It detects facial features and ignores anything else, such as buildings, trees and bodies.

Face detection is a computer technology that determines the locations and sizes of human faces in arbitrary (digital) images. It detects facial features and ignores anything else, such as buildings, trees and bodies.

NIST provides the Mugshot Identification Database (MID). The database contains approximately 3250 variable size images and can be used for developing, training and testing automated systems.

Face detection page on Wikipedia

1530 questions
19
votes
4 answers

Core Image face detection broken on 64 bit iOS?

So, I have an app that uses the face detection feature of Core Image ( https://itunes.apple.com/us/app/ace-freakyface-cartoon-mask/id454513332?mt=8 ) and I just got the new iPhone 5s and the app no longer detects a face. I'm also receiving an error…
nickthedude
  • 4,835
  • 8
  • 33
  • 50
18
votes
3 answers

Android FaceDetector.Face Euler angles are 0 all the time

I'm trying to get a the Euler angle of a Face that is detected by FaceDetector. Here is what I use to output to Logcat: Log.v("debug", " X: " + face.pose(Face.EULER_X) + " Y: " + face.pose(Face.EULER_Y) + " Z: " + face.pose(Face.EULER_Z) ); But it…
mellowg
  • 1,736
  • 3
  • 15
  • 19
18
votes
5 answers

Face gender detection library

I'm looking for an SDK or library that can detect faces in a webcam stream, and detect gender. Free or paid, C++ or C# under Windows. Any suggestions?
18
votes
9 answers

How to align face images c++ opencv

I am developing a C++ application for face authentication. First, I have to detect the face and pre-process the image. For face detection I have used the HaarCascadeClassifier. The problem is that the this tool or this algorithm gives me a facial…
OntoBLW
  • 215
  • 1
  • 2
  • 6
17
votes
3 answers

How to obtain a "mugshot" from face detection squares?

I'm building an application that will take an image of a single person's whole body and will produce a "mugshot" for that person. Mugshot meaning an image of the person's whole face, neck, hair and ears at the same general size of another…
Biff MaGriff
  • 7,901
  • 9
  • 60
  • 95
16
votes
4 answers

Facial Recognition in Java/Processing

I am doing a project that requires some facial recognition. I am attempting to find a Java implementation of this. I am not looking for facial detection. We are trying to do facial recognition through a live camera feed. Is there any way to…
user1202174
  • 177
  • 1
  • 1
  • 4
16
votes
1 answer

Crop Image with face detection in android

I needed a demo where any image can be cropped with the face detection function. FIXED But after few surfing hours I didn't come to a single demo, so I prepared a single demo with conjunction of few demos that I found online. I have prepared a demo…
Priyank Joshi
  • 290
  • 1
  • 4
  • 17
16
votes
1 answer

Proper usage of CIDetectorTracking

Apple recently added a new constant to the CIDetector class called CIDetectorTracking which appears to be able to track faces between frames in a video. This would be very beneficial for me if I could manage to figure out how it works.. I've tried…
Mick MacCallum
  • 124,539
  • 40
  • 277
  • 276
15
votes
2 answers

Classifiers confidence in opencv face detector

I'm using opencv's har cascade face detector (cv.HaarDetectObjects) in python. for example: faces = cv.HaarDetectObjects(grayscale, cascade, storage, 1.2, 2, cv.CV_HAAR_DO_CANNY_PRUNING, (50,50)) for f in faces: …
Yair
  • 1,285
  • 2
  • 12
  • 18
14
votes
5 answers

Android - Face feature detection

Currently I'm working on an app for Android phones. We want to detect features of a face. The programm should be able to detect the positions of the eyes, the nose, the mouth and the edge of the face. Accuracy should be fine but doesn't need to be…
14
votes
1 answer

Face detection & draw circle using Android Camera2 API

Currently I am trying to convert Camera2.Face to actual view's rect in order to draw circle over the face detected by the Camera2 API. I am able to get number of faces and its data into Callback by below code: private…
Rushabh Patel
  • 3,015
  • 4
  • 24
  • 57
14
votes
6 answers

Face detection in PHP

Does anybody know of a good way to do face detection in PHP? I came across some code here that claims to do this, but I can't seem to get it to work properly. I'd like to make this work (even though it will be slow) and any help you can give me…
Joe Lencioni
  • 9,595
  • 17
  • 50
  • 65
14
votes
1 answer

Java and haarcascade face and mouth detection - mouth as the nose

Today I begin to test the project which detects a smile in Java and OpenCv. To recognition face and mouth project used haarcascade_frontalface_alt and haarcascade_mcs_mouth But i don't understand why in some reasons project detect nose as a mouth.…
Adamo
  • 536
  • 7
  • 24
13
votes
3 answers

Head pose estimation with Opencv

I am using OpenCV Haar Algorithm to track the Head and overlay an image over the Head. What I am doing is saving frames generated by camera and overlaying image over each frames. And time is not a constraint as I am not doing it Real-Time. My code…
Wazy
  • 8,449
  • 8
  • 50
  • 95
13
votes
2 answers

Why create your own Haar-classifier cascades?

I found this tutorial on creating your own haar-classifier cascades. This raised the question with me: what are the advantages, if any, of running HaarTraining, and creating your own classifier (as opposed to using the cascades provided by OpenCv)?
wen
  • 3,712
  • 8
  • 32
  • 54