davidsandberg / facenet

Face recognition using Tensorflow
MIT License
13.81k stars 4.81k forks source link

detecting a face through webcam using "real_time_face_recognition.py" #836

Open RohithPendyala opened 6 years ago

RohithPendyala commented 6 years ago

I have trained the classifier and tried to use that to detect faces with the help of a webcam. I used the "real_time_face_recognition.py" code from "contributed" section. So, here the issue is that it is not detecting the face if there's a slight change in the pose. Will this code detect faces if there are pose variations in a frame? If yes, how many training images I have to use to build a classifier so that it can detect a face with pose variation?

AshutoshDongare commented 6 years ago

Are you pre processing your test images with MTCNN ? check out https://github.com/AshutoshDongare/FaceNet-IOT

RohithPendyala commented 6 years ago

That works fine brother @AshutoshDongare Thank you.