select a face from an image.

Just starting out? Need help? Post your questions and find answers here.
User avatar
idle
Always Here
Always Here
Posts: 5839
Joined: Fri Sep 21, 2007 5:52 am
Location: New Zealand

Re: select a face from an image.

Post 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:
Windows 11, Manjaro, Raspberry Pi OS
Image
dige
Addict
Addict
Posts: 1391
Joined: Wed Apr 30, 2003 8:15 am
Location: Germany
Contact:

Re: select a face from an image.

Post by dige »

@Danilo: thank you! I guess one step further ... is it possible to compare faces with opencv for face recognition?
"Daddy, I'll run faster, then it is not so far..."
User avatar
Danilo
Addict
Addict
Posts: 3036
Joined: Sat Apr 26, 2003 8:26 am
Location: Planet Earth

Re: select a face from an image.

Post 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
dige
Addict
Addict
Posts: 1391
Joined: Wed Apr 30, 2003 8:15 am
Location: Germany
Contact:

Re: select a face from an image.

Post 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...
"Daddy, I'll run faster, then it is not so far..."
Post Reply