无法 运行 在 Python 3.6.6 上对 Open CV 3.4.1 进行跟踪
Unable to run Tracking on Open CV 3.4.1 on Python 3.6.6
我尝试 运行 在 python 3.6.6 上使用开放式 CV 进行跟踪,但它显示:
AttributeError: module 'cv2' has no attribute 'TrackerKCF_create'
我也试过 python 2.7 API,但是结果一样:
AttributeError: module 'cv2' has no attribute 'Tracker_create'
Open CV 版本为 3.4.1。
知道如何解决这个问题吗?
提前致谢。
编辑:
问题与 提出的问题不同。我试过了,但对我不起作用。但是,我解决了它,并在下面给出了解决方案。
问题是我先安装了opencv-python,然后又安装了opencv-contrib-python,导致冲突。我完全删除了它们,并重新安装了 opencv-contrib-python。那解决了!
我尝试 运行 在 python 3.6.6 上使用开放式 CV 进行跟踪,但它显示:
AttributeError: module 'cv2' has no attribute 'TrackerKCF_create'
我也试过 python 2.7 API,但是结果一样:
AttributeError: module 'cv2' has no attribute 'Tracker_create'
Open CV 版本为 3.4.1。
知道如何解决这个问题吗?
提前致谢。
编辑:
问题与
问题是我先安装了opencv-python,然后又安装了opencv-contrib-python,导致冲突。我完全删除了它们,并重新安装了 opencv-contrib-python。那解决了!