vote up 17 vote down star
26

I'm looking for a free face recognition library for a university project. I'm not looking for face detection. I'm looking for actual recognition. That means finding images that contain specified faces or libraries that calculate distances between specific faces.

I'm using OpenCV for detecting the faces and a rough Eigenfaces Algorithm for the recognition now. But I thought there should be something out there with a better performance then a self written Eigenfaces Algorithm. I don't talk about speed as performance I'm looking for a library with better results as an simple Eigenfaces approach

I took a look at faint but it seems the library is not very reusable for my own applications.

I'm happy with a library in Python, Java, C++, C or something like that. The best thing would be if it can be run on a Windowsmachine

flag

Does it need to be free for political or practical reasons? If it's a pure research project you might be able to get a free academic license from one of the commercial suppliers. – christoffer Jun 25 at 14:00
I got relatively good results with only the eigenfaces approach but it seems that a good face detection api that is free to use is something that is missing at the moment – Janusz Nov 5 at 14:49

8 Answers

vote up 10 vote down check

Here is a list of commercial vendors that provide off the shelf packages for facial recognition which run on Windows:

  1. Cybula - Information on their Facial Recognition SDK. This is a company founded by a University Professor and as such their website looks unprofessional. There's no pricing information or demo that you can download. You'll need to contact them for pricing information.

  2. NeuroTechnology - Information on their Facial Recognition SDK. This company has both up front pricing information as well as an actual 30 day trial of their SDK.

  3. Pittsburgh Pattern Recognition - Information on their Facial Tracking and Recognition SDK. The demos that they provide help you evaluate their technology but not their SDSK. You'll need to contact them for pricing information.

  4. Sensible Vision - Information on their SDK. Their site allows you to easily get a price quote and you can also order an evaluation kit that will help you evaluate their technology.

link|flag
Thanks for the links but at the moment I need to find a free library – Janusz Jun 23 at 22:54
vote up 3 vote down

pam-face-authentication a PAM Module for Face Authentication: but it would require some work to get what you want. A quick test showed, that the recognition rate are not as good as those of VeriLook from NeuroTechnology.

Malic is another open source face recognition software, which uses Gabor Wavelet descriptors. But the last update to the source is 3 years old.

From the website: "Malic is an opensource face recognition software which uses gabor wavelet. It is realtime face recognition system that based on Malib and CSU Face Identification Evaluation System (csuFaceIdEval).Uses Malib library for realtime image processing and some of csuFaceIdEval for face recognition."

Further this could be of interest:

gaborboosting: A scientific program applied on Face Recognition with Gabor Wavelet and AdaBoost Algorithm

Feature Extraction Library - FELib refers to "Face Annotation by Transductive Kernel Fisher Discriminant,"

link|flag
vote up 4 vote down

If your project is on a movie or TV, or anything that has a script, it looks like you definitely want to look at the work of Mark Everingham et al.. The software is available, as are the results on a Buffy episode.

link|flag
vote up 0 vote down

Not really what you're looking for, but it may be useful to you. Face Detection/Computer Vision algorithms in MATLAB.

link|flag
vote up 0 vote down

The next step would be FisherFaces. Try it and check whether they work for you. Here is a nice comparison.

link|flag
vote up 3 vote down

I would think Eigenface, which you are doing already, is the way to go if you want to calculate the distance between faces. You could try out different approaches like Support Vector Machine or Hidden Markov Model. I found a page that lists major algorithms that could be used for facial recognition: Face Recognition Homepage.

Also, when you say "better performance," do you mean speed or accuracy? What kind of problem are you having? How varying are the data? Are they mostly frontal face or do they include profiles?

link|flag
1  
With performance I meed detection accuracy. Eigenfaces is nice but what I'm looking for is a ready off the shelf package for recognizing faces because I don't want to reinvent the wheel and I don't have the time – Janusz Jun 21 at 19:35
vote up 4 vote down

We're using OpenCV. It has lots of non-face-recognition stuff in there also, but, rest assured, it does do face-recognition.

link|flag
1  
I think there is no direct algorithm in OpenCV for face recognition. Face Detection from the OpenCV Library works fine – Janusz Jun 10 at 21:00
Yes, you're right. I confused face recognition and face detection. – Paul J. Lucas Jun 11 at 0:40
vote up 0 vote down

While I have no direct experience you might want to look at the open source programs/libraries for facial recognition on these two sites.

One: http://pages.cpsc.ucalgary.ca/~hanlen/vision/facelinks.html

Two: www.openden.com

link|flag
Sadly most of the projects are dead... – Janusz Jun 5 at 1:09
sorry about that, hope that you find what you are looking for – Soldier.moth Jun 5 at 1:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.