Note: NOT ACTIVE
Face Recognizer identifies the face of an individual by their name with the help of their facial features.
Face Recognizer uses deep learning algorithms to compare a live capture or digital image with the stored faceprints(also known as datasets) to verify an identity.
The algorithm used for classification is k-NN model i.e. k-Nearest Neighbor classifier. It uses Euclidean distance to compare images for similarity.
pip install cmake
git clone https://github.com/davisking/dlib.git
cd dlib
mkdir build
cd build
cmake ..
cmake --build
cd ..
python setup.py install
pip install -r requirements.txt
-
Setup environment
sudo apt-get update sudo apt-get upgrade
-
Install dependencies for OpenCV
sudo apt-get install build-essential cmake unzip pkg-config sudo apt-get install libjpeg-dev libpng-dev libtiff-dev sudo apt-get install libjasper-dev sudo apt-get install libavcodec-dev libavformat-dev libswscale-dev libv4l-dev sudo apt-get install libxvidcore-dev libx264-dev sudo apt-get install libgtk-3-dev sudo apt-get install libatlas-base-dev gfortran sudo apt-get install python3.6-dev sudo apt-get install libboost-all-dev
-
Install OpenCV
- OpenCV
pip install opencv-python
- OpenCV Contrib
pip install opencv-contrib-python
- OpenCV
-
Install other project dependencies
pip install -r requirements.txt
- On installing opencv:
https://www.pyimagesearch.com/2018/05/28/ubuntu-18-04-how-to-install-opencv/
- On dlib:
https://www.pyimagesearch.com/2017/03/27/how-to-install-dlib/
- On installing opencv:
python FaceRecognizer.py
- Input Image - The image in which faces are to be recognized:
- Original Image - The cropped input image
- Aligned Image - Aligning the image increases the efficiency of the algorithm
- Landmarks - Shows the landmarks of the detected faces
- Detected Face - The face is recognized and the name of the recognized face is displayed along with the face. If the face does not belong to the dataset then the face is labeled as Unknown.
- Input Image:
- Original Image:
- Aligned Image:
- Landmarks :
- Detected Face :
It is used to create 128-d face embeddings of the input image as well as custom dataset. These embeddings are used to compare input image(embeddings) with the dataset(embeddings). The one with the highest votes is preferred.
- I got big help from pyimagesearch. It cleared most of my concepts with very Ease and practical examples.
- Adam Geitgey : How Face Recognition works
- Face Recognition
- Custom Dataset: helped me to create my own dataset.
- Must Read Post
- Deep Face Recognition
- Facial Landmarks
- Facial Alignment
- Face Recognition for Beginners
- Face Recognition Basics