https://github.com/arun2002k/encoding_face_comparison
Face comparison based on 128 dimension facial encodings.
https://github.com/arun2002k/encoding_face_comparison
encoding face-recognition opencv python3
Last synced: about 1 month ago
JSON representation
Face comparison based on 128 dimension facial encodings.
- Host: GitHub
- URL: https://github.com/arun2002k/encoding_face_comparison
- Owner: arun2002k
- Created: 2024-04-30T10:18:27.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-30T10:26:28.000Z (about 2 years ago)
- Last Synced: 2025-01-21T11:15:04.909Z (over 1 year ago)
- Topics: encoding, face-recognition, opencv, python3
- Language: Python
- Homepage:
- Size: 46.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Encoding_face_Comparison
Face comparison based on 128 dimension facial encodings. Face_encodings method returns an encoding of the input image. Then, the compare_faces method compares the encodings through a distance parameter to see if there is a match. Then, the encoding with the least distance gets selected since it’s the closest match. After getting the match, the image’s title is retrieved using the image’s index in the list.
## Installation
Install libraries with pip
```bash
pip install opencv
pip install face_recognition
pip install pickle
```
## Running Tests
To run tests, run the following command
```bash
python Data_collect.python
python Data_check.py
```