cannot find reference for opencv functions in pycharm(在 pycharm 中找不到 opencv 函数的参考)
问题描述
我已经安装了 opencv-python 并且 .pyd 文件被添加到站点包和 DLL 中.该代码适用于图像.当我想阅读、显示、编写图像时,它可以工作.但我收到警告,在 init.py 中找不到函数的引用.因此,我无法使用自动完成功能.有人可以帮我吗?我在 pycharm 中使用 opencv 3.4.0 和 python 3.6.4.我在命令提示符下通过 pip 下载了 opencv.
I have opencv-python installed and the .pyd file is added in the site-packages and the DLLs. The code works with images. When I want to read, show, write an image it works. But I get a warning that the functions' references cannot be found in init.py . Due to this, I can not use the auto-complete feature. Could someone help me out? I am using opencv 3.4.0 and python 3.6.4 in pycharm. I downloaded opencv via pip in the command prompt.
推荐答案
问题是由 CV2 引起的,以及 init.py 是如何进行导入的.只需忽略应用程序将正常工作的警告.或者您可以使用
The problem is caused by CV2 and how init.py does the imports. Just ignore the warnings the app will work the same. Or you can do an import with alias like
import cv2.cv2 as cv2
如果您有警告,请按 Alt+Return 安装并修复它.现在您将在项目上看到自动完成功能并且没有其他警告(关于此).
If you have a warning on it press Alt+Return to install and fix it. Now you will have the autocomplete and no other warnings (about that) on the project.
这篇关于在 pycharm 中找不到 opencv 函数的参考的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 pycharm 中找不到 opencv 函数的参考
基础教程推荐
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 筛选NumPy数组 2022-01-01