AttributeError: module 'cv2.cv2' has no attribute 'createLBPHFaceRecognizer'

前端 未结 12 861
伪装坚强ぢ
伪装坚强ぢ 2020-11-30 04:28

I am facing some attribute error while running face recognizing the code. My face detects code run perfectly.But while I try to run the face recognizing code it shows some a

12条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-30 05:25

    python -m pip install --user opencv-contrib-python
    

    After doing this just Restart your system and then if you are on Opencv >= 4.* use :
    recognizer = cv2.face.LBPHFaceRecognizer_create()

    This should solve 90% of the problem.

提交回复
热议问题