pub trait ConsistentMosaicInpainterTrait: ConsistentMosaicInpainterTraitConst + InpainterBase {
    // Required method
    fn as_raw_mut_ConsistentMosaicInpainter(&mut self) -> *mut c_void;

    // Provided methods
    fn set_stdev_thresh(&mut self, val: f32) -> Result<()> { ... }
    fn inpaint(
        &mut self,
        idx: i32,
        frame: &mut Mat,
        mask: &mut Mat
    ) -> Result<()> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn set_stdev_thresh(&mut self, val: f32) -> Result<()>

source

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

Implementors§