【发布时间】:2018-05-16 08:50:11
【问题描述】:
在 OpenCV 3.4 KCF 跟踪器 (C++) 中,如何查看 HOG 功能是否启用以及如何设置 HOG 相关参数?
【问题讨论】:
标签: opencv video-tracking
在 OpenCV 3.4 KCF 跟踪器 (C++) 中,如何查看 HOG 功能是否启用以及如何设置 HOG 相关参数?
【问题讨论】:
标签: opencv video-tracking
我看到下面的代码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);
现在我正在为此寻找 Python 代码:/
【讨论】: