Page 2 of 2

Re: select a face from an image.

Posted: Mon Mar 11, 2013 7:06 pm
by idle
Kiffi wrote:
Danilo wrote:It is a false detection!
here's another one:

Image

strange...

Suddenly I'm drooling over my breakfast! :lol:

Re: select a face from an image.

Posted: Tue Mar 12, 2013 9:55 am
by dige
@Danilo: thank you! I guess one step further ... is it possible to compare faces with opencv for face recognition?

Re: select a face from an image.

Posted: Tue Mar 12, 2013 11:43 am
by Danilo
dige wrote:@Danilo: thank you! I guess one step further ... is it possible to compare faces with opencv for face recognition?
There is no function CompareFaces(image1,image2) if you mean that. ;)

OpenCV Wiki: Face Recognition using OpenCV:
Face Recognition is a very active research area specialising on how to recognize faces within images or videos.
Face recognition compliments Face Detection.
Face Detection is the process of finding a 'face' within images or videos and Face Recognition is the process of matching
the detected 'face' to one of many the faces known to the filesystem.
Your system must 'learn' to recognize faces. It needs to build a database of images and associate it with a name,
extract special features etc...

It is not as easy as just comparing two images. Not to speak about comparing it pixel by pixel... :D

Some more articles to get your research started:

- Introduction to Face Detection and Face Recognition
- Seeing With OpenCV, Part 4: Face Recognition With Eigenface
- OpenCV Matching Faces Over Time - daniel shiffman

- Wikipedia: Facial recognition system
- Wikipedia: Gesichtserkennung (german)

- libface - Face Recognition Library

Re: select a face from an image.

Posted: Tue Mar 12, 2013 12:44 pm
by dige
Danilo wrote: There is no function CompareFaces(image1,image2) if you mean that. ;)
I hoped about something like GetFaceFingerPrint(image) ;-)
http://docs.opencv.org/trunk/modules/co ... c_api.html
and the Face Recognition Library looks interesting, but it blows my little single brain cell away...