tld_tracker in OpenCV 3.
Dear all,
I want to test tld_tracker. However, in OpenCV3.0, include\opencv2\video, there is only tracking.hpp, tracking_c.h, background_segm.hpp, and video.hpp. tld_tracker is not included.
Has anyone used opencv_3_0's tld_tracker? Could you tell me how to test this method?
Thank you so much!
Best Regards
Stev
you will have to add the opencv_contrib repo and rebuild, then there is a sample in the tracking module.
come back, if you run into any problems ;)
It is too hard for me to rebuild.I decide to use cmake-gui to rebuild.But I can't understand what the README.md mean.And what should I do to run the program after rebuilding?Could you give me some advice?
I just did it with cmake few days ago. Just select which module you are going to build (switch them to ON) and you have to specify the OPEN_CV_EXTRA_MODULE_PATH= YOUR_PATH/opencv_contrib/modules . I have to run it many times because there seems to be some broken modules (you should turn them to OFF in cmake_gui) then make -j$(nproc) and finally make install to copy header files etc .. I hope this helps you