Build Your Own Face Recognition Tool With Python
Do you have a phone that you can unlock with your face? Have you ever wondered how that works? Have you ever wanted to build your own face recognizer? With Python, some data, and a few helper packages, you can create your very own. In this project, you’ll use face detection and face recognition to identify faces in a given image.
In this tutorial, you’ll build your own face recognition tool using:
- Face detection to find faces in an image
- Machine learning to power face recognition for given images
- Command-line arguments to direct your application with
argparse
- Bounding boxes to label faces with the help of Pillow
With these techniques, you’ll gain a solid foundation in computer vision. After