Tracker KCF
How do I create a Tracker object in Java? I find examples for C++ and Python, but I'm not able to find the interface for Java.
C++: Tracker::create( "MIL" );
Python: cv2.Tracker_create("MIL")
Comments
- did you build opencv3.2 with opencv_contrib libs ?
- cmake -DBUILD_DOCS=ON should have generated javadocs for the tracking module, too.
- there are no java samples, try to port thisc++ one , come back, when you run into trouble