views:

1344

answers:

3

I'm looking for a quick way to detect faces in pictures (stored as JPG or any other popular image format). Code in any popular programming language will do (Python, C#, Java, Matlab, etc.). I'm also willing to implement an algorithm by myself, as long as it is proven to be a good working one.

Alternatively, if there are known freeware (preferably open, but not necessary) tools or SDKs for the problem, I'll try them too.

Finally, Commercial products would be considered as well, if all else fails, so recommend those too.

A: 

OpenCV is a open source library that has support for face recognition.

Patjoh
OpenCV only supports facedetection not recognition. There is a very hard difference between them.
Janusz
+2  A: 

Emgu.CV is a C# wrapper for OpenCV. There is a sample project that performs face recognition with adjsutable parameters just like in OpenCV.

geometrikal
Facial detection (per the original question) is supported - facial recognition is not directly supported.
Rob Fuller
+1  A: 

Take a look at these guys, I've used this once partially for a project.

http://ayonix.com/en/products/software/ayofa.html

Yonathan Klijnsma