[][src]Trait opencv::rapid::OLSTracker

pub trait OLSTracker: Tracker {
    pub fn as_raw_OLSTracker(&self) -> *const c_void;
pub fn as_raw_mut_OLSTracker(&mut self) -> *mut c_void; }

implements "Optimal local searching for fast and robust textureless 3D object tracking in highly cluttered backgrounds" seo2013optimal

Required methods

Loading content...

Implementations

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

pub fn create(
    pts3d: &dyn ToInputArray,
    tris: &dyn ToInputArray,
    hist_bins: i32,
    sobel_thesh: u8
) -> Result<Ptr<dyn OLSTracker>>
[src]

C++ default parameters

  • hist_bins: 8
  • sobel_thesh: 10

Implementors

Loading content...