Reputation: 21
self.tracker = cv2.Tracker_create(tracker_type)
AttributeError: module 'cv2.cv2' has no attribute 'Tracker_create'
I have tried the method supported in Unable to run Tracking on Open CV 3.4.1 on Python 3.6.6, but it does not work.
self.tracker = cv2.Tracker_create(tracker_type)
Upvotes: 1
Views: 1046
Reputation: 21
I have solved this problem just now . just uninstall your opencv-python and opencv-contrib-python, then pip install opencv-contrib-python==3.4.5.20
Upvotes: 1