0
votes
0answers
141 views

Face Recognition code using emgu cv and C# and it returns a black image and unknown/unrecognized label all time

I was working on Face Recognition project. After training the database and calling EigenObjectRecognizer, the result is a black image with unrecognized label.When the code runs, it looks like the ...
0
votes
1answer
202 views

C# - Emgu CV - Face Recognition code stops execution at EigenObjectRecognizer and exit without error

I was working on Face Recognition and when i run the code it stops execution at the point where EigenObjectRecognizer is initialized and exits the program with out any error.Have any one else faced ...
0
votes
0answers
84 views

C# - Emgu Cv - Face Recognition- Loading training sets of Faces saved to Access database as a binary in to EigenObjectRecognizer for Face recognition

I was having a hard time loading training set from Ms Access database in to the main form that does the Face Recognition. I saved the training sets with their names and ID in to the database as a ...
0
votes
0answers
37 views

How to get PCA and save it to Ms Access Database for Face Recognition using Emgu CV and C#

I was wondering if someone could tell me how i save PCA of Faces of Training set to my Access database. I am doing my recognition by saving the image in binary to the database. When i read it from ...
1
vote
1answer
105 views

EmguCV - Face Recognition - 'Object reference not set' exception when using training set from Microsoft Access Database

I've been developing a face recognition application using EmguCV (C#). I got the whole thing working okay if I store the face images (training set) in simple windows folder. But, after I tried to ...
0
votes
0answers
160 views

How to track a single face using emgu cv?

I am doing a project in which I have to track a single face using emgu cv. I need the program to detect a face, track it, and disregard all the other faces. I did something similar with OpenCV and ...
0
votes
0answers
204 views

Preprocessing Photo

I'm developing a face recognition system in .net (C#) , using EmguCV. I have been inspired by the fantastic Chris_Johnson code. Before doing the recognition, the photos pass two preprocess phases : ...
0
votes
2answers
292 views

face detection in flex

I'm trying to write a simple program that will detect a face off a webcam and then trigger an event(optionally take a snapshot of the face) I don't need anything fancy like to compare it to other ...
1
vote
0answers
896 views

Emgu CV EigenObjectRecognizer not working

I've tried to code a face recognition program and need some help from the community. The code posted below compiled with no error but the recognizer seems to be not working? Basically target.jpg ...
0
votes
1answer
107 views

Why Can't EigensCount Be Greater Than TrainingImagesCount-1 [EigenObjectRecognizer]

http://www.cognotics.com/opencv/servo_2007_series/part_5/fig_6_thumb.png Can anyone explain why nEgiens must not be over nTrainFace-1 on the picture above? I am using EmguCv. When nEgiens and ...
1
vote
0answers
216 views

Face Recognition with EmguCV 2.4 returns NULL

I used the Face Recognition class with EmguCV version 2.2 and everything worked fine. I just recently upgraded to the 2.4 version. I start by creating a Recognizer class. _recognizer = new ...
0
votes
1answer
898 views

Emgu CV Face Recognition: Running DetectHaarCascade on multiple files in parallel issues

I am trying improve the speed of detecting faces in images by running the DetectHaarCascade face detection concurrently on multiple files. But I am hitting AccessViolationException, wondering does ...
0
votes
1answer
2k views

Emgu CV Face Recognition: How to Improve the accuracy

I have leverage the facial recognition code from http://www.codeproject.com/Articles/239849/Multiple-face-detection-and-recognition-in-real-ti and had a good start using it to recognize a few faces. ...
0
votes
1answer
405 views

Emgu SVM classifier, predicts incorrect with poly and RBF kernels

I used EmguCV in C# for a face recognition project, but I found Emgu's support vector machine (SVM) predicts wrong classes when I use poly and RBF (redial basis function) kernels. I compared Emgu's ...
0
votes
1answer
2k views

emgucv face recognition

can someone please show me an example, or links, about using emgucv to create a face recognition application? I've managed to create a webcam capture and face detection, but having trouble to ...
1
vote
0answers
267 views

The “pixels between the eyes” rating of opencv's facial recignition?

Ya about says it all. And if anyone has, can post, or point me to a comprehensive list of facial recognition solutions, with the pixel between the eyes ratings, and pricing/licensing when concerning ...
3
votes
4answers
8k views

OpenCV/EmguCV face recognition

I am trying to make an app that detect faces and recognizes it. I made Face detection but I want some idea to when making recognition. I'm using a web cam for tracking and it can detect the face.Then ...