@pycharm中出现module ‘cv2’ has no attribute 'imread’的错误

pycharm中出现module ‘cv2’ has no attribute 'imread’的错误【解决了!】

python-opencv和opencv-contrib-python已经在cmd中安装完毕

pip install opencv-python
pip install opencv-contrib-python

pycharm中pip也已经安装完毕(如下图)
pip是之前电脑的使用者安装的并看不懂
使用pip查询也能查到
在这里插入图片描述

说实话真没想到自己英雄一世居然死在环境配置……还是洗洗睡吧

import cv2
img = cv2.imread('lena.jpg')
# 转换为灰度图
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
cv2.imshow('img', img)
cv2.imshow('gray', img_gray)
cv2.waitKey(0)

运行程序后出现以下错误
在这里插入图片描述
问题是不只是imread出现错误,当查看版本是也会出现同样错误

import cv2
print(cv2.__version__)

在这里插入图片描述
我摊牌了,我是菜鸡在这里插入图片描述
菜鸡自己琢磨出来了。菜鸡领悟了
file-setting这里大家总是找不到pip所安装的包是因为这个地方的地址选的是这个程序所在的地址,改成这里的就好啦
添加
直接添加进去就好

在这里插入图片描述
菜鸡解放了菜鸡可以继续用python学习了,告辞!
在这里插入图片描述

@pycharm中出现module ‘cv2’ has no attribute 'imread’的错误pycharm中出现module ‘cv2’ has no attribute 'imread’的错误(未解决)python-opencv和opencv-contrib-python已经在cmd中安装完毕pip install opencv-pythonpip install opencv-contrib-pythonpycharm中pip也已经安装完毕(如下图)说实话真没想到自己英雄一
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attributeimread’, AttributeError: module ‘scipy.misc’ has no attributeimresize’, AttributeError:module ‘scipy.misc’ has no attributeimsave’问题 imreadimresize,imsave 最近遇到如下三个错误 AttributeError: module ‘scipy.misc’ has no attributeimread
删除掉当前目录使用的环境,然后只保留选择系统环境,点击ok即可 以上这篇解决pyCharm module 调用失败的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持软件开发网。 您可能感兴趣的文章:pycharm运行出现ImportError:No module named的解决方法解决p
最近写人脸识别的时候,使用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 inst...
input_img = cv.imread(file_path) AttributeError: module 'cv2' has no attribute 'imread' 我已经安装了opencv-python3=1.0 目前的解决办法是安装 pip install opencv-contrib-python -i https://pypi.tuna.tsinghua.edu.cn/simple
module 'cv2' has no attribute 'VideoCapture' 在运行OpenCV的代码包视频的统计FPS的程序时,报错以上错误,原因是因为把.py的代码文件也命名成了“cv2”,这样相当于对导入代码文件本身,当然不会有videocapture模块。 再将代码文件进行更改后,有报错了以下信息: 报错原因是因为文件路径的格式表达不对,需要用"//"进行分开, 输出的视频FPS
今天用实验室的pycharm运行程序的时候发现出现了已安装的模块无法导入的情况,但实际上这个模块我已经在notebook使用多次了,所以不可能是未安装模块的原因 查了一下原因,应该是由于电脑安装了多个版本的pythonpycharm选择的解释器恰好是未安装该模块的版本 解决方法 就是更改pycharm的解释器,选择setting,找到project interpreter,选择具有该模块的python即可,等到pycharm将当前选择的解释器配置好就可以运行了 以上这篇pycharm运行出现ImportError:No module named的解决方法就是小编分享给大家的全部内
今天安装pymysql时发生了错误AttributeError: module ‘pip’ has no attribute ‘main’ 解决方法如下: 1.找到PyCharm 2017.1\helpers\packaging_tool.py 2.打开packaging_tool.py,注意,最好用pycharm打开,因为这样可以直接定位到104行左右的位置 3.找到104行,会看到两个函数: def do_install(pkgs): import pip except ImportError: error_no_pip()
报错:AttributeError: module 'cv2' has no attribute '__version__' AttributeError: module 'cv2' has no attribute 'imshow'等各种奇怪的报错,连基本的api都没有 原因:可能是opencv_contrib_python没有安装 解决:安装 opencv_contrib_python
这个错误提示是因为你的PyCharm环境没有安装OpenCV库。你需要先安装OpenCV库,然后在PyCharm添加OpenCV库的路径。具体步骤如下: 1. 在命令行使用pip安装OpenCV库:pip install opencv-python 2. 打开PyCharm,点击菜单栏的File -> Settings -> Project: your_project_name -> Project Interpreter 3. 在Project Interpreter页面,点击右上角的“+”按钮,搜索并选择安装好的OpenCV库 4. 如果PyCharm没有自动添加OpenCV库的路径,你需要手动添加。在Project Interpreter页面,点击OpenCV库的“Show paths”按钮,将路径复制下来,然后在PyCharm的Settings页面点击“Project Structure”,将OpenCV库的路径添加到“Add Content Root”。 完成以上步骤后,重新运行你的代码,就不会再出现“no module named cv2”的错误提示了。
百年金丹期的入门小学徒: 我是把从原文件右键点击打开的那一个文件给它挪到了我想放到的地方去,把.idea、图片还有main函数等大概三四个大类的文件全部放在一起,然后它就可以正常运行了,不然你反复重装也没用 快捷键ctrl+alt+f,我装了openCV-python,Matplotlib,numpy,contrib,headless pycharm中出现module ‘cv2‘ has no attribute ‘imread‘的错误【解决了!】 小猿人之小萌新: 大佬牛啊,我终于能运行成功了,万分感谢 pycharm中出现module ‘cv2‘ has no attribute ‘imread‘的错误【解决了!】 不知道怎么写代码的麻瓜: 他安装的是真实环境,但是在pycharm使用的环境是虚拟环境,所以没办法用,换个运行环境就可以了 pycharm中出现module ‘cv2‘ has no attribute ‘imread‘的错误【解决了!】 十八304: 没看明白,请问你修改了哪里,location还是interpreter,求告知 pycharm中出现module ‘cv2‘ has no attribute ‘imread‘的错误【解决了!】 九江过海: 如果这样还不能解决问题又是咋回事呢?同志