代码编织梦想

报错AttributeError: module ‘cv2’ has no attribute ‘ximgproc’
在这里插入图片描述

首先查看是否安装opencv-contrib-python

pip list | grep opencv

显示

opencv-contrib-python             4.4.0.46             
opencv-python                     4.8.1.78             
opencv-python-headless            4.7.0.72

说明本机上已经成功安装 opencv-contrib-python, opencv-python ,opencv-python-headless模块,但是为什么还会报错module ‘cv2’ has no attribute 'ximgproc’呢?

由于版本不一致的问题导致的。

将opencv-contrib-python升级为 opencv-python 一致的版本即可解决

pip install opencv-contrib-python==4.8.1.78

解决后,再测试查看各模块版本为:

pip list | grep opencv

显示

opencv-contrib-python             4.8.1.78             
opencv-python                     4.8.1.78             
opencv-python-headless            4.7.0.72 
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/xiao_lxl/article/details/134599324

vs2010封装dll时报错:error lnk2019: 无法解析的外部符号 "-爱代码爱编程

VS2010封装DLL时报错:  error LNK2019: 无法解析的外部符号 "__declspec(dllimport) const CTripLineDetection::`vftable'" (__imp_??_7CTripLineDetection@@6B@),该符号在函数 "public: __thiscall CTripLineDete

attributeerror: module 'cv2.cv2' has no attribute 'ximgproc'(问题已解决,亲测有效!)_astonc的博客-爱代码爱编程_cv2.ximgproc

AttributeError: module ‘cv2.cv2’ has no attribute ‘ximgproc’(问题已解决,亲测有效!) 遇到该问题时,网友多是建议补个包,即 pip3 install openc

解决opencv-contrib-python库导入的一系列问题-爱代码爱编程

缺少库opencv-contrib-python 程序报错如下: AttributeError: module 'cv2.cv2' has no attribute 'ximgproc' 原因是缺少库 opencv-contrib-python 安装步骤及注意事项如下: 1. 有四种不同的 opencv 包 opencv-p

安装了包opencv-contrib-python却仍然出现AttributeError: module ‘cv2.cv2‘ has no attribute ‘ximgproc‘问题的解决-爱代码爱编程

安装了包opencv-contrib-python却仍然出现AttributeError: module 'cv2.cv2' has no attribute 'ximgproc'问题的解决 如题, 问题的关键在于opencv在python上有4种不同的版本, 版本之间是不互相兼容的. 这些版本有 opencv-python,opencv-contri

解决 module ‘cv2.cv2‘ has no attribute ‘ximgproc‘-爱代码爱编程

下载opencv增强版本 installed opencv-contrib-python-4.5.3.56 我今天发现运行之前程序 利用opencv dnn解读tensorflow模型 发现无法解读模型,可是我记得之前明明可以 我就把opencv升到最新版本 !!升到最新版本后我又发现另一个程序出了问题 说是没有ximgproc模块!!! 上网搜了一下 好

AttributeError: module ‘cv2.cv2‘ has no attribute ‘ximgproc‘解决方法-爱代码爱编程

今天在写道路中心线提取的时候,Arcgis自带的提取中心线的方法不适合复杂道路网,用了ArcScan效果也不太好,对于较宽的路无法直接识别,最终使用了Opencv的道路骨架网络提取,效果很不错。但是在一开始存在一个问题,就是 thinned = cv.ximgproc.thinning(binary) 出错:AttributeError: modul