Hopefully someone can point me in the right direction here.
I'm using the latest release of Anaconda (Python 2.7). I would like to use it with OpenCV with the tracking features. I've tried various versions of the cv2.pyd file including 3.0, 3.1, 3.2, 3.3 and 3.4. However, the examples I've found use one of the following commands which are not found in the module.
tracker = cv2.Tracker_create(tracker_type)
or
tracker = cv2.TrackerKCF_create()
The usage of either of these depends which OpenCV version is being used. However, neither of them work, both with the following error.
'module' object has no attribute 'Tracker_create / or TrackerKCF_create'
All of the other features in OpenCV seem to work fine.
Is the cv2.pyd file I'm extracting from the Windows OpenCV install limited to certain features?
If I use the following in the Anaconda Prompt
conda install -c menpo opencv3
it installs the tracking features I need. However, it installs v3.1 of OpenCV which is known to have bugs with the tracking features. Ideally I wan't v3.4 of OpenCV.
Any help would be appreciated.