我正在尝试使用 OpenCV 对图像执行选择性搜索,但是当我运行我的代码时,我得到了这个:
>>> import cv2
>>> ss = cv2.ximgproc.segmentation.createSelectiveSearchSegmentation()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: module 'cv2.cv2' has no attribute 'ximgproc'
我见过类似的问题,但人们解决了他们安装opencv-contrib-python
包的问题。我已经安装了这个模块,但问题仍然存在。
这是我的需求文件:
opencv-contrib-python==4.1.0.25
opencv-python==4.1.0.25
我正在使用带有 python 3.7 的 conda 环境