[][src]Trait opencv::cudabgsegm::CUDA_BackgroundSubtractorMOG2

pub trait CUDA_BackgroundSubtractorMOG2: BackgroundSubtractorMOG2 {
    pub fn as_raw_CUDA_BackgroundSubtractorMOG2(&self) -> *const c_void;
pub fn as_raw_mut_CUDA_BackgroundSubtractorMOG2(&mut self) -> *mut c_void; pub fn apply(
        &mut self,
        image: &dyn ToInputArray,
        fgmask: &mut dyn ToOutputArray,
        learning_rate: f64,
        stream: &mut Stream
    ) -> Result<()> { ... }
pub fn get_background_image(
        &self,
        background_image: &mut dyn ToOutputArray,
        stream: &mut Stream
    ) -> Result<()> { ... }
pub fn get_background_image_1(
        &mut self,
        background_image: &mut GpuMat,
        stream: &mut Stream
    ) -> Result<()> { ... } }

Gaussian Mixture-based Background/Foreground Segmentation Algorithm.

The class discriminates between foreground and background pixels by building and maintaining a model of the background. Any pixel which does not fit this model is then deemed to be foreground. The class implements algorithm described in Zivkovic2004 .

See also

BackgroundSubtractorMOG2

Required methods

Loading content...

Provided methods

pub fn apply(
    &mut self,
    image: &dyn ToInputArray,
    fgmask: &mut dyn ToOutputArray,
    learning_rate: f64,
    stream: &mut Stream
) -> Result<()>
[src]

pub fn get_background_image(
    &self,
    background_image: &mut dyn ToOutputArray,
    stream: &mut Stream
) -> Result<()>
[src]

pub fn get_background_image_1(
    &mut self,
    background_image: &mut GpuMat,
    stream: &mut Stream
) -> Result<()>
[src]

Loading content...

Implementors

Loading content...