pywikibot-catfiles / file-metadata

A python package to analyze files and provide useful metadata
MIT License
15 stars 1 forks source link

Detect faces for specific events - Rio olympics #63

Open AbdealiLoKo opened 7 years ago

AbdealiLoKo commented 7 years ago

It would be nice if we can have a module which uses the detected faces and attempts to recognize the face using a given dataset. This can be used to detect names of atheletes in the upcoming Rio Olympics.

The way this can work is: Get a list of all Olympic athletes available online somewhere. Google search their name with google image search and download the first 100 or 500 images. Now a facial recognition match can be done to find which person it is using this database. (Possibly using opencv's facerec - http://docs.opencv.org/2.4/modules/contrib/doc/facerec/facerec_tutorial.html)

Note that the images from google need not be only portraits as face recognition can find how to crop them to get only face.

drtrigon commented 7 years ago