[][src]Trait opencv::tracking::prelude::TrackerCSRT

pub trait TrackerCSRT: Tracker {
    pub fn as_raw_TrackerCSRT(&self) -> *const c_void;
pub fn as_raw_mut_TrackerCSRT(&mut self) -> *mut c_void; pub fn set_initial_mask(&mut self, mask: &dyn ToInputArray) -> Result<()> { ... } }

the CSRT tracker

The implementation is based on Lukezic_IJCV2018 Discriminative Correlation Filter with Channel and Spatial Reliability

Required methods

Loading content...

Provided methods

pub fn set_initial_mask(&mut self, mask: &dyn ToInputArray) -> Result<()>[src]

Loading content...

Implementations

impl<'_> dyn TrackerCSRT + '_[src]

pub fn create(parameters: &TrackerCSRT_Params) -> Result<Ptr<dyn TrackerCSRT>>[src]

Create CSRT tracker instance

Parameters

  • parameters: CSRT parameters TrackerCSRT::Params

C++ default parameters

  • parameters: TrackerCSRT::Params()

Implementors

Loading content...