ageitgey / face_recognition

The world's simplest facial recognition api for Python and the command line
MIT License
53.23k stars 13.47k forks source link

question:how to distinguish a real face or a copied face image? thanks. #569

Open seebrand opened 6 years ago

seebrand commented 6 years ago

Description

Describe what you were trying to get done. Tell us what happened, what went wrong, and what you expected to happen. IMPORTANT: If your issue is related to a specific picture, include it so others can reproduce the issue.

What I Did

Paste the command(s) you ran and the output.
If there was a crash, please include the traceback here.
navalchand commented 6 years ago

Hope i can relate to your question.

Requirement

How can we distinguish between a real face and face which is printed or displayed.

If this is what you need to identify please find below solution.

  1. face_recognition and identify.
  2. Add an object detection.
  3. Check for intersecting areas of objects in image and face locations.

This can solve the above problem and you can also use the above for Visual Relationship Detection Track. Reference : https://storage.googleapis.com/openimages/web/challenge.html

Combination of face_recognition and Visual Relationship Detection Track can lead to many use cases.

seebrand commented 6 years ago

Thank u! that's really what i need ! i'll try it later. thanks !