Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 704 Bytes

README.md

File metadata and controls

22 lines (12 loc) · 704 Bytes

How to use

1. Execute Register.py to take pictures to register faces.

To use computer native webcam make sure the code is:

cap = cv2.VideoCapture(0)

Its also possible to use an phone camera to register, insert ip camera adress as parameter

cap = cv2.VideoCapture('http://192.168.100.7:8080/video')

2. Run Trainer.py to execute the Cascade Classifier Training.

3. Recognition.py should correctly display and recognize faces.