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

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

Background Subtraction using Local SVD Binary Pattern. More details about the algorithm can be found at LGuo2016

Required Methods

Provided Methods

Implementors