OpenCV 3.4 KCF tracker HOG features (C++)

794 Views Asked by At

In OpenCV 3.4 KCF tracker (C++), how can I see if HOG features are enabled and how can I set HOG related parameters?

1

There are 1 best solutions below

1
On

I see codes below here:

// Create the KCFTracker object with one of the available options
KCFTracker tracker(HOG, FIXEDWINDOW, MULTISCALE, LAB);

// Give the first frame and the position of the object to the tracker
tracker.init( Rect(xMin, yMin, width, height), frame );

// Get the position of the object for the new frame
result = tracker.update(frame);

Now I'm looking for Python code for this :/