pub trait ColorAverageInpainterTrait: ColorAverageInpainterTraitConst + InpainterBase {
    fn as_raw_mut_ColorAverageInpainter(&mut self) -> *mut c_void;

    fn inpaint(
        &mut self,
        idx: i32,
        frame: &mut Mat,
        mask: &mut Mat
    ) -> Result<()> { ... } }

Required Methods

Provided Methods

Implementors