AttributeError: module 'cv2' has no attribute 'ximgproc'

AttributeError: module 'cv2' has no attribute 'ximgproc'

我在 Jupyter notebook 上的 opencv 中使用 ximgproc 时遇到问题。我的 venv 带有以下 pip 包。

当我在 bash 中 运行 时,

cv2.ximgproc 正在工作,但在 Jupyter notebook 上不起作用。

您的 jupyter 内核运行正在使用不同的版本。

检查 cv2.__version__sys.path 进行诊断。

我在项目环境中安装了cv2 4.5.5 来自 anaconda.org 的 conda-forge 频道, 效果很好。 注意使相同的环境可用 当你 运行 jupyter notebook.