The face-detection tag has no wiki summary.
0
votes
1answer
52 views
Basic Algorithm for Image Classification
I have been trying to implement image classification by extracting facial features. I tried starting with some already established methods like Multi Kernel Approach, using Independent Component ...
0
votes
0answers
19 views
Searching for image samples in order to create custom classifier
I am training a classifier of my own, specifically for detecting body arms. According to the training process I have to provide positive samples and negative samples, wich will be used in the ...
1
vote
0answers
68 views
How to relocate face points in opencv / face distortion?
I have to simulate facial expressions on a face image ( say open mouth ). For this I first extracted the facial feature points and found the corners of the lips. Now I need to deform the image by ...
0
votes
0answers
62 views
STASM or AAM which is more efficient
I am working in face detection and recognition project. I am using STASM for face detction and locating face landmarks. On googling I found AAM (Active Appearance Model) and found that it is also used ...
6
votes
0answers
55 views
What are the state of the art methods for person segmentation and person pose identification
I know that HOG is pretty state of the art for person detection, but in its original form HOG is only a detection method, and I don't believe it is particularly fast either (there is a significant ...
2
votes
1answer
44 views
Methods for searching a large face database
I have a large face database, and I want to search through it. For example, if I input a new face image, the system would return the best N similarities.
I know that PCA, LDA, and Procrustes analysis ...
3
votes
0answers
138 views
Face Detection + Cropping
Project: Face Detection
Description: I want to detect and crop a face in an image. The image is captured through webcam and only one face per image.I used OpenCV face detector, but I was not ...
5
votes
0answers
61 views
Red eye detection
Project: Red eye detection
Description: I want to remove red-eye from images. I am not able to use face detector because, the faces in the images are not always frontal and also the images are of ...
1
vote
0answers
57 views
How to categorize the images based on Illumination / shadow?
Input: Cropped face or Non Cropped face images.
Detailed explanation: My project is face authentication. I am using OpenCV face detector to crop face from images. I am using OpenCV implementation of ...
1
vote
1answer
58 views
FaceAuthentication
My project is Face Authentication.
System Description: My input is only one image (which was taken when the user logins for the first time) and using that image system should authenticate whenever ...
4
votes
1answer
164 views
Online boosting (training on the fly) for face detection
I want to implement an on-the-fly training process for face detection. I'm not sure but it seems it's called online boosting.
Š’efore, I have used OpenCV face detection with my own cascades, but I'm ...
2
votes
1answer
64 views
scale invariant face similarity metric
I need some face similarity metric.
I know about PCA,LDA approaches that uses raw pixels data, but they are not scale invariant(I know that I can resize image but I think that's not good solution).
...
3
votes
0answers
285 views
OpenCV face recognition: Finding a best match
I am working on OpenCV2.4.2 C++ interface for face recognition functionality. The face recognition feature seems to be working fine on standard databases. (AT&T, Face Recognition Data, University ...
8
votes
2answers
252 views
What are some face detection (not recognition) algorithms suitable for limited (embedded) processors?
I am looking at a hardware based platform for surveillance class of applications. I want to identify faces of people as they appear in the scene.
I don't intend to really apply face recognition ...