pub trait CUDA_BackgroundSubtractorMOG2Const: BackgroundSubtractorMOG2Const {
    fn as_raw_CUDA_BackgroundSubtractorMOG2(&self) -> *const c_void;

    fn get_background_image(
        &self,
        background_image: &mut dyn ToOutputArray,
        stream: &mut Stream
    ) -> Result<()> { ... } }
Expand description

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

Provided Methods

Implementors