- face_recognition version: 1.3.0
- Python version: 3.12.3
- Operating System: Windows 11
- file: Example/facerec_from_webcam.py
Description
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)