AttributeError: module ‘cv2‘ has no attribute ‘imread‘问题的解决方法
最近写人脸识别的时候,使用cv2模块时,当执行img=cv.read("face1.jpg")的时候,编译器报错:AttributeError: module 'cv2' has no attribute 'read'。然后自己去百度发现,自己在使用cv2库的时候,只安装了opencv-python库(在cmd中的安装命令为:pip install opencv-python),却没有安装open
·
最近写人脸识别的时候,使用cv2模块时,当执行img=cv.read("face1.jpg")的时候,编译器报错:
AttributeError: module 'cv2' has no attribute 'read'。
然后自己去百度发现,自己在使用cv2库的时候,只安装了opencv-python库(在cmd中的安装命令为:pip install opencv-python),却没有安装opencv-contrib-python库,然后自己接着又使用pip install opencv-contrib-python命令安装好该库后,再运行之前的程序。发现编译器能成功运行。
填坑不易,且行且珍惜 如果帮助到你 评论一下 让更多人看到,解决大家的问题。
更多推荐
已为社区贡献1条内容
所有评论(0)