pub trait BackgroundSubtractorGSOCConst: BackgroundSubtractorConst {
    fn as_raw_BackgroundSubtractorGSOC(&self) -> *const c_void;

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

Implementation of the different yet better algorithm which is called GSOC, as it was implemented during GSOC and was not originated from any paper.

This algorithm demonstrates better performance on CDNET 2014 dataset compared to other algorithms in OpenCV.

Required Methods§

Provided Methods§

Implementors§