Recognize faces from Python or from the command line
Project description
Face Recognition
Features
Find faces in pictures
Find all the faces that appear in a picture:
import face_recognition
image = face_recognition.load_image_file("your_file.jpg")
face_locations = face_recognition.face_locations(image)
Find and manipulate facial features in pictures
Get the locations and outlines of each person’s eyes, nose, mouth and chin.
import face_recognition
image = face_recognition.load_image_file("your_file.jpg")
face_landmarks_list = face_recognition.face_landmarks(image)
Identify faces in pictures
Recognize who appears in each photo.
import face_recognition
known_image = face_recognition.load_image_file("biden.jpg")
unknown_image = face_recognition.load_image_file("unknown.jpg")
biden_encoding = face_recognition.face_encodings(known_image)[0]
unknown_encoding = face_recognition.face_encodings(unknown_image)
results = face_recognition.compare_faces([biden_encoding], unknown_encoding)
Installation
You can install this module from pypi using pip3 (or pip2 for Python 2):
$ pip3 install face_recognition
How to install dlib from source
Usage
Command-Line Interface
Next, you need a second folder with the files you want to identify:
$ face_recognition ./pictures_of_people_i_know/ ./unknown_pictures/
/unknown_pictures/unknown.jpg,Barack Obama
/face_recognition_test/unknown_pictures/unknown.jpg,unknown_person
$ face_recognition ./pictures_of_people_i_know/ ./unknown_pictures/ | cut -d ',' -f2
Barack Obama
unknown_person
Python Module
API Docs: https://face-recognition.readthedocs.io.
Automatically find all the faces in an image
import face_recognition
image = face_recognition.load_image_file("my_picture.jpg")
face_locations = face_recognition.face_locations(image)
# face_locations is now an array listing the co-ordinates of each face!
Automatically locate the facial features of a person in an image
import face_recognition
image = face_recognition.load_image_file("my_picture.jpg")
face_landmarks_list = face_recognition.face_landmarks(image)
# face_landmarks_list is now an array with the locations of each facial feature in each face.
# face_landmarks_list[0]['left_eye'] would be the location and outline of the first person's left eye.
Recognize faces in images and identify who they are
import face_recognition
picture_of_me = face_recognition.load_image_file("me.jpg")
my_face_encoding = face_recognition.face_encodings(picture_of_me)[0]
# my_face_encoding now contains a universal 'encoding' of my facial features that can be compared to any other picture of a face!
unknown_picture = face_recognition.load_image_file("unknown.jpg")
unknown_face_encoding = face_recognition.face_encodings(unknown_picture)[0]
# Now we can see the two face encodings are of the same person with `compare_faces`!
results = face_recognition.compare_faces([my_face_encoding], unknown_face_encoding)
if results[0] == True:
print("It's a picture of me!")
else:
print("It's not a picture of me!")
Python Code Examples
All the examples are available here.
How Face Recognition Works
Caveats
The face recognition model is trained on adults and does not work very well on children. It tends to mix up children quite easy using the default comparison threshold of 0.6.
Thanks
Many, many thanks to Davis King (@nulhom) for creating dlib and for providing the trained facial feature detection and face encoding models used in this library. For more information on the ResNet the powers the face encodings, check out his blog post.
Everyone who works on all the awesome Python data science libraries like numpy, scipy, scikit-image, pillow, etc, etc that makes this kind of stuff so easy and fun in Python.
Cookiecutter and the audreyr/cookiecutter-pypackage project template for making Python project packaging way more tolerable.
History
0.1.0 (2017-03-03)
First test release.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file face_recognition-0.1.6.tar.gz
.
File metadata
- Download URL: face_recognition-0.1.6.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c345478c0cb67f22328bbd2010d2b0893fb15ab708d1af03e7e914716791ff49 |
|
MD5 | 2a0fd0deb5b08a1bd9e139d9b43b5027 |
|
BLAKE2b-256 | 2d7471d8702d5195bcb834800925aef90db1c943b17911e0249192dddf5feac0 |
File details
Details for the file face_recognition-0.1.6-py2.py3-none-any.whl
.
File metadata
- Download URL: face_recognition-0.1.6-py2.py3-none-any.whl
- Upload date:
- Size: 12.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7a804169afe5cce599f54241dc9be4b0e5f7b4e1e848e157c36589ac1ed67ae |
|
MD5 | 5210530802d80395fd54590dcf54ed11 |
|
BLAKE2b-256 | 6e85a406d6d9e4813f6069de425eca75f5368f0cdd2edd4d65a63a130375d9d2 |