pub trait FastGlobalSmootherFilter: AlgorithmTrait + FastGlobalSmootherFilterConst {
    fn as_raw_mut_FastGlobalSmootherFilter(&mut self) -> *mut c_void;

    fn filter(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut dyn ToOutputArray
    ) -> Result<()> { ... } }

Required Methods§

Provided Methods§

Apply smoothing operation to the source image.

Parameters
  • src: source image for filtering with unsigned 8-bit or signed 16-bit or floating-point 32-bit depth and up to 4 channels.

  • dst: destination image.

Implementors§