[][src]Struct opencv::tracking::TrackerStateEstimatorAdaBoosting

pub struct TrackerStateEstimatorAdaBoosting { /* fields omitted */ }

TrackerStateEstimatorAdaBoosting based on ADA-Boosting

Implementations

impl TrackerStateEstimatorAdaBoosting[src]

impl TrackerStateEstimatorAdaBoosting[src]

pub fn new(
    num_classifer: i32,
    init_iterations: i32,
    n_features: i32,
    patch_size: Size,
    roi: Rect
) -> Result<TrackerStateEstimatorAdaBoosting>
[src]

Constructor

Parameters

  • numClassifer: Number of base classifiers
  • initIterations: Number of iterations in the initialization
  • nFeatures: Number of features/weak classifiers
  • patchSize: tracking rect
  • ROI: initial ROI

Trait Implementations

impl Boxed for TrackerStateEstimatorAdaBoosting[src]

impl Drop for TrackerStateEstimatorAdaBoosting[src]

impl Send for TrackerStateEstimatorAdaBoosting[src]

impl TrackerStateEstimator for TrackerStateEstimatorAdaBoosting[src]

impl TrackerStateEstimatorAdaBoostingTrait for TrackerStateEstimatorAdaBoosting[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.