问题1:pycharm运行程序时报错
AttributeError: module 'cv2.cv2' has no attribute 'cv2.MultiTracker_create()'
解决方案:
-
在cmd中输入下列代码,如果是anaconda配置的环境,就在anaconda的prompt中输入
-
pip install opencv-contrib-python
方法原地址:
https://blog.csdn.net/qq_42575647/article/details/99403199
问题2:pycharm运行程序时报错
AttributeError: module 'cv2' has no attribute 'cv2.MultiTracker_create()'
解决方案:
通过cv2.legacy来调用此函数,比如
'cv2.MultiTracker_create()'改成 'cv2.legacy.MultiTracker_create()'
方法原地址:
https://blog.csdn.net/weixin_44279924/article/details/121783210
文章评论