pub trait BackgroundSubtractorMOGTraitConst: BackgroundSubtractorTraitConst {
    // Required method
    fn as_raw_BackgroundSubtractorMOG(&self) -> *const c_void;

    // Provided methods
    fn get_history(&self) -> Result<i32> { ... }
    fn get_n_mixtures(&self) -> Result<i32> { ... }
    fn get_background_ratio(&self) -> Result<f64> { ... }
    fn get_noise_sigma(&self) -> Result<f64> { ... }
}
Expand description

Required Methods§

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§