我正在尝试在Python下的OpenCV中使用基于图的分段功能。
旧的cv名称空间中存在绑定:
dst = cv.ximgproc_segmentation_GraphSegmentation.processImage( src[, dst] )
(以及其他一些方法)。
此功能在cv2
中消失了,我发现了与...等价的痕迹
retval= cv2.ximgproc.segmentation.createGraphSegmentation()
但是它似乎在3.4.4版本中不存在。
有人知道发生了什么事吗?
答案 0 :(得分:0)
我自己解决了。软件包opencv-contrib-python
也必须安装。