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
The spelling of the Encoding word is wrong in the facerec_from_webcam.py file
here is the problem:
# Find all the faces and face enqcodings in the frame of video
face_locations = face_recognition.face_locations(rgb_frame)
face_encodings = face_recognition.face_encodings(rgb_frame, face_locations)
corrected the spelling mistake
# Find all the faces and face encodings in the frame of video
face_locations = face_recognition.face_locations(rgb_frame)
face_encodings = face_recognition.face_encodings(rgb_frame, face_locations)
The text was updated successfully, but these errors were encountered:
Description
The spelling of the Encoding word is wrong in the facerec_from_webcam.py file
here is the problem:
corrected the spelling mistake
The text was updated successfully, but these errors were encountered: