AttributeError: module 'cv2' has no attribute 'inshow'

AttributeError: module 'cv2' has no attribute 'inshow'

应该是imshow,而不是inshow,如下图所示:

img

  • 这篇文章:AttributeError: module 'cv2.cv2' has no attribute 'cv' 也许能够解决你的问题,你可以看下
  • 除此之外, 这篇博客: 报错信息:AttributeError: module ‘cv2‘ has no attribute ‘face‘中的 解决方法 部分也许能够解决你的问题, 你可以仔细阅读以下内容或跳转源博客中阅读:
  • face模块实际上并不是opencv库的一部分。更确切地说,face是部分的的opencv-contrib库。所以,需要安装opencv-contrib库。

    方法一:可以使用cmd进行安装

    pip install opencv-contrib-python
    

    在这里插入图片描述

    方法二:如果使用的是pycharm ,也可以在pycharm中进行安装
    在这里插入图片描述

    在这里插入图片描述
    在这里插入图片描述