pub trait BackgroundSubtractorLSBPTraitConst: BackgroundSubtractorTraitConst {
// Required method
fn as_raw_BackgroundSubtractorLSBP(&self) -> *const c_void;
// Provided method
fn get_background_image(
&self,
background_image: &mut impl ToOutputArray,
) -> Result<()> { ... }
}
Expand description
Constant methods for crate::bgsegm::BackgroundSubtractorLSBP
Required Methods§
fn as_raw_BackgroundSubtractorLSBP(&self) -> *const c_void
Provided Methods§
fn get_background_image( &self, background_image: &mut impl ToOutputArray, ) -> Result<()>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.