AISangam / Facenet-Real-time-face-recognition-using-deep-learning-Tensorflow

Facenet-Real-time-face-recognition-using-deep-learning-Tensorflow
159 stars 104 forks source link

webcam #12

Open pradeepsharma07 opened 6 years ago

pradeepsharma07 commented 6 years ago

How to use this for webcam for live face recognition?

Aashima-Gupta commented 6 years ago

yes, pls someone guide us. How to use this for real time face recognition on windows?

pradeepsharma07 commented 6 years ago

Hi , I did it on real time face recognition using webcam.

srijansingh53 commented 5 years ago

In the file identify_face_video.py, line 50/51 change the statement video_capture = cv2.VideoCapture(input_video) to video_capture = cv2.VideoCapture(0)

NB: 0 in VideoCapture(0) is the webcam device no. you are assigning to...

helloimchristine commented 5 years ago

@Pradeep07shar can you provide your code? TQ VERY MUCH.

helloimchristine commented 5 years ago

@srijansingh53 do you have the source code? I'm really interested in this

shankarvishnu commented 4 years ago

You have to update this line to use webcam. video_capture = cv2.VideoCapture(input_video) to video_capture = cv2.VideoCapture(0)