You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Convert the image from BGR color (which OpenCV uses) to RGB color (which face_recognition uses)rgb_frame=frame[:, :, ::-1]
code=cv2.COLOR_BGR2RGBrgb_frame=cv2.cvtColor(rgb_frame, code)
It seems to fix this issue. I'll let it open to the community see the fix and also for any further discussion.
Description
The example
facerec_from_video_file.py
is not running.Here's the the terminal output...
What I Did
git clone https://github.com/ageitgey/face_recognition.git cd face_recognition/examples python facerec_from_video_file.py
The text was updated successfully, but these errors were encountered: