Tagged Questions
22
votes
5answers
5k views
Viola-Jones' face detection claims 180k features
I've been implementing an adaptation of Viola-Jones' face detection algorithm. The technique relies upon placing a subframe of 24x24 pixels within an image, and subsequently placing rectangular ...
17
votes
4answers
15k views
Face detection in java
Can anyone recommend a decent java library for face detection (recognition not required, just detection).
The library would preferably be pure java (e.g. no dependencies on other native libs, DLLs or ...
14
votes
6answers
5k views
Robust Face Detection in C/C++?
I'm looking for a robust face detection algorithm/library, preferably in C (C++ is okay too; other languages I can port if necessary). I've used OpenCV's implementation in the past, but I don't think ...
7
votes
4answers
1k views
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?
5
votes
3answers
679 views
Eigenfaces algorithm
I am programming a face recognition program using OpenCV.
When generating the eigenfaces:
do I need to use a big database of unknown faces ?
do I need to use only photos of the people I want my ...
5
votes
3answers
1k views
detect skin tone from an image
I am trying to develop an application which will detect the color of the face once an image is provided. I was able to find out the face detection algorithm from openCV and integrate it. However i ...
3
votes
2answers
867 views
Improve face detection performances with OpenCV/EmguCV
I am currently using EmguCV (OpenCV C# wrapper) sucessfully to detect faces in real-time (webcam). I get around 7 FPS.
Now I'm looking to improve the performances (and save CPU cycles), and I'm ...
3
votes
2answers
186 views
What are Eigenfaces generated from?
I'm working with eigenfaces for a facial recognition program I am writing. I have a couple questions about how eigenfaces are actually generated:
Are they generated from a lot of pictures of ...
3
votes
3answers
2k views
Is there any fast library(s) for finding human eyes and mouth in Flash? (Actionscript)
So I have real time video stream. With 1 (one) person on It . It Is Black and White, I need to be able to capture this persons eyes and mouth (direction (at least X,Y), state (at least opened or ...
2
votes
1answer
162 views
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, ...
2
votes
2answers
430 views
Matching two images
How can we match two images using Java. I want to make a face recognition application, that will store face of people at some location and then later will check whether a person is a member or not. If ...
2
votes
2answers
641 views
What preprocessing image techniques should I take in consideration before applying OpenCV's Viola-Jones method for face recognition?
I am working for a project at school regarding face recognition, based on a technique described by Viola and Jones 2001/2004.
I've read that the OpenCV has an implementation of this algorithm, and it ...
1
vote
1answer
1k views
image segmentation techniques
I am working on a computer vision application and I am stuck at a conceptual roadblock. I need to recognize a set of logos in a video, and so far I have been using feature matching methods like SIFT ...
1
vote
2answers
48 views
how to find image for computervision programs
hi
i'm trying some eigenvector tecniques for eyes and face recognition
where can i find databes of pictures? like a databe with eyes of the same dimension - for example
0
votes
1answer
30 views
How to increase haar detector's window size in OpenCV
I am using the code available in this website: http://nashruddin.com/OpenCV_Face_Detection to do face detection.
I would like to increase the size of the detected face region. I am not sure how to ...
0
votes
2answers
37 views
Detecting a face and saving the detected face in OpenCV
I am trying to detect the face in the image and trying to save the detected face as an image in OpenCV.
Having some problems in the detectfaces function below.
#include "stdafx.h"
#include ...