报错AttributeError: module ‘cv2‘ has no attribute ‘ximgproc‘

报错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 
相关推荐
越学不动啦2 小时前
四、Bug篇+用例篇
软件测试·测试用例·bug·软件工程·测试基础
有时间要学习2 小时前
Test——BUG篇
bug·测试
猫猫头有亿点炸2 天前
电脑连不上手机热点会出现的小bug
bug
不想加班的码小牛3 天前
第4期:重构软件测试体系——生成式AI如何让BUG无所遁形
人工智能·重构·bug·集成测试
limanjihe3 天前
PrimeTime生成.lib竟暗藏PG添加Bug
bug
Java手札5 天前
【bug】Cannot connect to already running IDE instance.SocketTimeoutException
ide·bug
妄想出头的工业炼药师5 天前
pcl 1.14.1 vs2022 Eigen::internal::aligned_free bug
bug
小海海不怕困难5 天前
xxljob阻塞处理策略设置为单机串行导致的bug
bug
Littlehero_1215 天前
关于bug总结记录
bug
深度Linux6 天前
告别代码Bug,GDB调试工具详解
linux内核·bug·内核调试