Real-time compressive tracking code can not run on VS2013 with opencv2411 [closed]
Kaihua Zhang provide an advanced TLD algorithm and share the code.But I can not run it on VS2013 with opencv2411.VS can't open the file "opencv_core242.lib".Do I need install opencv242?Could you give me some advice?
you probably should try to build it from source. (the existing binaries are dependant on a opencv 2.4.2 install)
(just copy any demo proj. you have, change the title, add the 2 cpp files)
if you got cmake, try this(put this into CmakeLists.txt next to the cpp files):
Thanks a lot!
don't cheer, before it worked ;(
According to your directions, I created a new program and add the two cpp files. But the function "readImageSequenceFiles" have 4 errors.What should I do next?
I just use the Cmake-gui.So I don't know the command in the CmakeLists.txt.
the errors are ? (cmake-gui is ok as well)
3.IntelliSense: "char *" 类型的实参与 "LPCWSTR" 类型的形参不兼容 e:\2411vsgoongcheng\advancedTLD\advancedTLD\RunTracker.cpp 154 27 advancedTLD
hehe ;)
idea : just use the other example from the website, which is using VideoCapture
(only RunTracker.cpp differs)
Hi break. Could you help me? I download the source code of OpenTLD-v1.4.0.After congiguring and generating it successfully, I encountered two problems. The one is I don't know how to use the file "opentld.exe" to open a video. The other problem is in the generated project I can not find the modules of opencv so many functions in opencv such as cascadeclassifier could not be used. How to use the opentld in ordinary opencv project? By the way the one you recommended I think is different from the TLD.