Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV where is tracking.hpp

Tags:

c++

opencv

tld

I want to use an OpenCV's implementation of the TLD tracker. Internet says that I have to include this file: opencv2/tracking.hpp (e.g. see https://github.com/Itseez/opencv_contrib/blob/master/modules/tracking/samples/tracker.cpp).

But there is no such a file.

Well, what must I do to use TrackerTLD in my C++ project?

(OpenCV 3.0.0 beta for Windows, installed from the .exe package from opencv.org)

like image 743
Artem Chyrkov Avatar asked Feb 19 '15 23:02

Artem Chyrkov


1 Answers

As Floyd mentioned, to use TrackerTLD, you need to download OpenCV contrib repo. Instruction is in the link, so explaining it shouldn't be necessary.
However in my opinion using TrackerTLD from OpenCV repo is bad option - i've tested it (about a week or 2 ago) and it was terribly slow. If you are thinking about real time image processing, consider using other implementation of TLD or some other tracker. Right now i'm using this implementation and it's working really well. Note that tracking an object is quite a time consuming task so to perform a real time tracking i have to downscale every frame from 640x480 to 320x240 (Propably it would work well (and definitely faster) in even lower resolution). On the web page of author of this implementation you may find some informations about TLD algorithm (and implementation) and another tracker created by this author - CMT(Consensus-based Matching and Tracking of Keypoints). Unfortunetely i haven't test it yet so i can't tell anything about it.

like image 141
cyriel Avatar answered Oct 05 '22 16:10

cyriel