Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 813 Bytes

README.md

File metadata and controls

43 lines (27 loc) · 813 Bytes

Face Recognition with insightface


Part of project:

  • Face Verification
  • Face Identification

How to use:

1 - Install Dependencies:

pip install -r requirements.txt

Use Face Verification:

python.exe .\face_verification.py --image_1 ./verification_test_images/img_1.jpg --image_2 ./verification_test_images/img_2.jpg --threshold 25

Use Face Identification:

2 - Collect face bank:

  • Put the pictures of different people in a folder and name the folder after that person. Finally, put all the folders in a face bank folder

3 - Create face bank;

  • Create your own face bank using the CreateFaceBank class.
main.ipynb

4 - Recognise image with using the FaceIdentification.

main.ipynb

image