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
{{ message }}
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.
Im wondering if its worth mentioning what version of OpenCV this project is compatible with. I installed OpenCV 3.1.0, and had some issues. One of which being cv2.createLBPHFaceRecognizer in the facerecognition.py script needed to be called from a face module, such as cv2.face.createLBPHFaceRecognizer.
Another issue is in 3.x versions model.predict doesnt return a tuple containing the label and confidence score, but rather it just returns the label.
Even better would it be possible to have it support both 2.x and 3.x versions. I am aware there are some backward compatibility issues when using 3.x from 2.x, so perhaps just a statement in the README saying which version of OpenCV is intended to be used?
iPython output:
In [1]: importcv2; cv2.__version__Out[1]: '3.1.0'
The text was updated successfully, but these errors were encountered:
Hey,
Im wondering if its worth mentioning what version of OpenCV this project is compatible with. I installed OpenCV
3.1.0
, and had some issues. One of which beingcv2.createLBPHFaceRecognizer
in the facerecognition.py script needed to be called from aface
module, such ascv2.face.createLBPHFaceRecognizer
.Another issue is in
3.x
versionsmodel.predict
doesnt return a tuple containing the label and confidence score, but rather it just returns the label.Even better would it be possible to have it support both
2.x
and3.x
versions. I am aware there are some backward compatibility issues when using3.x
from2.x
, so perhaps just a statement in the README saying which version of OpenCV is intended to be used?iPython output:
The text was updated successfully, but these errors were encountered: