Home > Back-end >  module 'cv2' has no attribute 'face'
module 'cv2' has no attribute 'face'

Time:01-02

I try to make face recognition using opencv. But iam facing some attribute error. I also installed pip install opencv-contrib-python library and reinstalled python.org software but still facing that error

The code and output screen

CodePudding user response:

I fix this problem with using this commands.

pip uninstall opencv-contrib-python

pip install opencv-contrib-python==4.4.0.46
  • Related