Biren Mer

Results 8 comments of Biren Mer

Hello there I am having the same issue, Please help me solve it ` /home/x/workspace/face-recognition-2/frc/bin/python /home/x/workspace/face-recognition-2/main.py Traceback (most recent call last): File "/home/x/workspace/face-recognition-2/main.py", line 54, in face_encodings = face_recognition.face_encodings(rgb_small_frame, face_locations)...

Hey, this helped me in solving my issue, Try `rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)` instead of `rgb_frame = frame[:, :, ::-1]` Credits:-[original issue ](https://github.com/ageitgey/face_recognition/issues/1454)

Hello there I am having the same issue, Please help me solve it ` /home/x/workspace/face-recognition-2/frc/bin/python /home/x/workspace/face-recognition-2/main.py Traceback (most recent call last): File "/home/x/workspace/face-recognition-2/main.py", line 54, in face_encodings = face_recognition.face_encodings(rgb_small_frame, face_locations)...

Hey, this helped me in solving my issue, Try `rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB)` instead of `rgb_frame = frame[:, :, ::-1]` Credits:-[original issue ](https://github.com/ageitgey/face_recognition/issues/1454)

Try replacing This: `small_frame = cv2.resize(frame, (0, 0), fx=0.25, fy=0.25)` with this: `small_frame=cv2.resize(frame,(0,0),fx=1,fy=1)` Also, remove this line: `process_this_frame = not process_this_frame`

Yup, I tried to debug, it is able to provide name but it is not able to draw on the top of image. Try this example insted [example](https://github.com/ageitgey/face_recognition/blob/master/examples/facerec_from_webcam.py) This one...

can you provide more code So I can try and replicate this issue ??

Thanks @ManivannanMurugavel my code is working now, I have also provided this answer in two above mentioned issue thank you once again