-
Notifications
You must be signed in to change notification settings - Fork 13.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
compute_face_descriptor(): incompatible function arguments #1582
Comments
Try this GRAY conversion before calling face_recognition.face_locations. It resolved this issue for me. rgb_small_frame = small_frame[:, :, ::-1] |
Yes, that solved the issue. Thanks |
It is working. |
thank u so much :) |
您好,悉获您的邮件,我将尽快处理,感谢您的来信!
|
Description
I'm running into a problem with a fresh installation of dlib and face_recognition according to the doc. The sample code I ran is https://github.com/ageitgey/face_recognition/blob/master/examples/facerec_from_webcam_faster.py
What I Did
I'm getting this (and I'm getting this with various other samples too, so I suppose some incompatibility between face_recognition and dlib):
The text was updated successfully, but these errors were encountered: