Face Recognition Using Opencv

I need to make a face recognition system using opencv LBP and here is the link where the facerec code is .

In this code, a CSV file must be generated for several users, and the code will recognize if there is an input face in the CSV list.

My intention is to check the face against one user. that is, the user will register his face for the first time (I will write it in csv) and whenever the same user tries to authenticate, I will collect several user images and compare with the previous CSV file. How to do this with the code above?

+4
source share
1 answer

consider a threshold (specified by the prediction function) smaller than the value to determine whether a person is known or not. the first time a passing face will be predicted to be unknown (less than a threshold), then place it in the database (csv file too). for the next pass, he must predict a value slightly larger than the previous one, you can take it and so on until you think that the forecast is suitable for you.

0
source

All Articles