Open pradeepsharma07 opened 6 years ago
yes, pls someone guide us. How to use this for real time face recognition on windows?
Hi , I did it on real time face recognition using webcam.
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...
@Pradeep07shar can you provide your code? TQ VERY MUCH.
@srijansingh53 do you have the source code? I'm really interested in this
You have to update this line to use webcam. video_capture = cv2.VideoCapture(input_video) to video_capture = cv2.VideoCapture(0)
How to use this for webcam for live face recognition?