|
OpenCV453
|
the CSRT tracker [詳解]
#include <tracking.hpp>
cv::Trackerを継承しています。
クラス | |
| struct | Params |
公開メンバ関数 | |
| virtual CV_WRAP void | setInitialMask (InputArray mask)=0 |
基底クラス cv::Tracker に属する継承公開メンバ関数 | |
| virtual CV_WRAP void | init (InputArray image, const Rect &boundingBox)=0 |
| Initialize the tracker with a known bounding box that surrounded the target [詳解] | |
| virtual CV_WRAP bool | update (InputArray image, CV_OUT Rect &boundingBox)=0 |
| Update the tracker, find the new most likely bounding box for the target [詳解] | |
静的公開メンバ関数 | |
| static CV_WRAP Ptr< TrackerCSRT > | create (const TrackerCSRT::Params ¶meters=TrackerCSRT::Params()) |
| Create CSRT tracker instance [詳解] | |
the CSRT tracker
The implementation is based on [Lukezic_IJCV2018] Discriminative Correlation Filter with Channel and Spatial Reliability
|
static |
Create CSRT tracker instance
| parameters | CSRT parameters TrackerCSRT::Params |