The project is mainly a method for detecting faces in a given image by using OpenCV-Python and face_recognition module. The first phase uses camera to capture the picture of our faces which generates a feature set in a location of your PC.
• The face_recognition command lets you recognize faces in a photograph or folder full for photographs.
It has two simple commands
- Face_ recognition- Recognise faces in a photograph or folder full for photographs.
- face_detection - Find faces in a photograph or folder full for photographs.
For face recognition, first generate a feature set by taking few image of your face and create a directory with the name of person and save their face image.
Then train the data by using the Face_ recognition module.By Face_ recognition module the trained data is stored as pickle file (.pickle).
By using the trained pickle data, we can recognize face.
The main flow of face recognition is first to locate the face in the picture and the compare the picture with the trained data set.If the there is a match, it gives the recognized label.
Comments