[][src]Trait opencv::ximgproc::GuidedFilter

pub trait GuidedFilter: AlgorithmTrait {
    pub fn as_raw_GuidedFilter(&self) -> *const c_void;
pub fn as_raw_mut_GuidedFilter(&mut self) -> *mut c_void; pub fn filter(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut dyn ToOutputArray,
        d_depth: i32
    ) -> Result<()> { ... } }

Interface for realizations of Guided Filter.

For more details about this filter see Kaiming10 .

Required methods

Loading content...

Provided methods

pub fn filter(
    &mut self,
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    d_depth: i32
) -> Result<()>
[src]

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
Loading content...

Implementors

Loading content...