The face recogntion system is used to train the faces of employees and detect them when they walk past the camera. It can be used as an attendence system for the employees.
The system is built using python libraries dlib and face_recognition. Django framework is used to develop the front end for the system.
Installing OpenCV, Dlib and face_recogntion libraries
pip install opencv-python
pip install dlib
pip install face_recognitionInstalling other packages
pip install -r requirements.txtFirstly,open the terminal run below command it will clone git repository and then navigate to project folder,
git clone https://github.com/Divyansh6799/Face-recognition-in-python-django.gitand run the following command for run the django server,
python manage.py runserverThen go to the browser and enter the url http://127.0.0.1:8000/


