Skip to content

ritikamishra01/FaceRecognition

 
 

Repository files navigation

Face Recognizer

Face Recognizer indentifies 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.

Prerequisites

Build and install dlib library

git clone https://github.com/davisking/dlib.git
mkdir build
cd build
cmake ..
cmake --build
cd ..
python setup.py install

Setup

pip install -r requirements.txt

Set the path of the input images in the code and run the following command:

python FaceRecognizer.py

How Does It Work?

  • An image that contains the face to be recognized is loaded (e.g., input image).
  • The face is detected and cropped.
  • The face is aligned if it is not aligned straight
  • Landmarks (e.g., 68 (x, y) coordinates) are detected that map to the facial structures on the face.
  • The detected face is encoded (e.g., 128-d embeddings of the image are created).
  • The input image[encoding] is passed to the k-NN model for classification.
  • The k-NN model returns the name with the highest votes

Outputs:

  • Input Image - The image in which faces are to be recognized:

Input Image

  • Original Image - The cropped input image

Original Image Original Image!

  • Aligned Image - Aligning the image increases the efficiency of the algorithm

Aligned image Aligned Image

  • Landmarks - Shows the landmarks of the detected faces

Landmark

  • 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.

Detected face




Another Recognition:

  • Input Image:

Input Image

  • Original Image:

Original Image

  • Aligned Image:

Aligned Image

  • Landmarks :

Landmarks

  • Detected Face :

Detected Face


encode-faces.py

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.

DAT file

Link to Download Dat File

Resources

About

Recognizes faces

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 100.0%