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),却没有安装opencv-contrib-python库,然后自己接着又使用pip install opencv-contrib-python命令安装好该库后,再运行之前的程序。发现编译器能成功运行。

填坑不易,且行且珍惜 如果帮助到你 评论一下 让更多人看到,解决大家的问题。

上一篇:【算法-LeetCode】1013. 将数组分成和相等的三个部分(Array.reduce();双指针)


下一篇:js 动态生成列表 例子