Skip to content

T-Visor/deepface

Repository files navigation

Batch Face Recognition

Uses the Deepface library in Python to support batch facial recognition. Top-K accuracy is used to evaluate facial recognition performance.

Installation

pip3 install -r requirements.txt

Server Environment

conda activate deepface

Usage

$ python3 run.py                                                                                 
usage: run.py [-h] -s SOURCE_DIRECTORY -d DATABASE_PATH -k K_VALUE -o OUTPUT_FILE

options:
  -h, --help            show this help message and exit
  -s SOURCE_DIRECTORY, --source_directory SOURCE_DIRECTORY
                        Directory with images of people to identify.
  -d DATABASE_PATH, --database_path DATABASE_PATH
                        Dataset of images containing known faces.
  -k K_VALUE, --k_value K_VALUE
                        Determines the value used for Top-K Accuracy.
  -o OUTPUT_FILE, --output_file OUTPUT_FILE
                        Output file to write accuracy results to (Ex. "output.txt")

Sample Output

-------------------------------
TOP 5 ACCURACY
-------------------------------

1.
=============================================
source image: George_Clooney_40143._attacked.png
predicted: ['Ian_Holm', 'J.K._Simmons', 'Christopher_Lloyd', 'J.K._Simmons', 'Chazz_Palminteri'] 
true label: George_Clooney
Result: INCORRECT
=============================================

2.
=============================================
source image: George_Clooney_39923._attacked.png
predicted: ['Hugh_Jackman', 'Eric_Dane', 'Gerard_Butler', 'Freddy_Rodríguez', 'Billy_Boyd'] 
true label: George_Clooney
Result: INCORRECT
=============================================

3.
=============================================
source image: George_Clooney_40211._attacked.png
predicted: ['Jeremy_Irons', 'Bradley_Cooper', 'Christian_Bale', 'J.K._Simmons', 'George_Clooney'] 
true label: George_Clooney
Result: CORRECT
=============================================

Accuracy: 1/3 (33%)

Example Output Without Top-K Accuracy

                                            identity  VGG-Face_cosine
0  images/original-images/Hugh_Jackman/Hugh_Jackm...         0.278785
1  images/original-images/Eric_Dane/Eric_Dane_365...         0.282408
2  images/original-images/Gerard_Butler/Gerard_Bu...         0.289872
3  images/original-images/Freddy_Rodríguez/Freddy...         0.304297
4  images/original-images/Billy_Boyd/Billy_Boyd_1...         0.307399

Source image: George_Clooney_39923._attacked.png

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published