pub trait GuidedFilter: AlgorithmTrait + GuidedFilterConst {
    fn as_raw_mut_GuidedFilter(&mut self) -> *mut c_void;

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

Interface for realizations of Guided Filter.

For more details about this filter see Kaiming10 .

Required Methods§

Provided Methods§

Apply Guided Filter to the filtering image.

Parameters
  • src: filtering image with any numbers of channels.

  • dst: output image.

  • dDepth: optional depth of the output image. dDepth can be set to -1, which will be equivalent to src.depth().

C++ default parameters
  • d_depth: -1

Implementors§