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

1726 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,925
  • 10
  • 36
  • 51
18
votes
4 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,786
  • 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
  • 8,102
  • 9
  • 61
  • 98
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
15 answers

Unable to get object metadata from S3. Check object key, region and/or access permissions in aws Rekognition

import boto3 if __name__ == "__main__": bucket='MyBucketName' sourceFile='pic1.jpg' targetFile='pic2.jpg' client=boto3.client('rekognition','us-east-1') response=client.compare_faces(SimilarityThreshold=70, …
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
  • 300
  • 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
  • 129,200
  • 40
  • 280
  • 281
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,325
  • 2
  • 13
  • 18
15
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,052
  • 4
  • 26
  • 58
15
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
  • 10,231
  • 18
  • 55
  • 66
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
2 answers

Cut rounded image with the face from CIDetector and CIFaceFeature

How to cut the frame that I receive as faceViewBounds to make a big circle around the face? It's like a badge with the face of the person. Maybe I should get the center of faceViewBounds then I have to find this center in theImageView.image and draw…
Bogdan Bogdanov
  • 882
  • 11
  • 36
  • 79
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
  • 586
  • 1
  • 9
  • 28