Trying to build a mini face recognition project from a set of pictures in a folder
When trying to use LBPH algorithm to do so using:
recognizer = cv.face.LBPHFaceRecognizer()
I get:
"Unknown C++ exception from OpenCV code"
If I use:
recognizer = cv.face.LBPHFaceRecognizer_create()
the code doesn't recognize LBPHFaceRecognizer_create method.
I have tried uninstalling and reinstalling opencv-contrib-python and updating it many times, yet it still didn't work
To any of you who wants to check the full code, the link will redirect you FaceRecognizer.py link