Trait opencv::ximgproc::prelude::GuidedFilter [−][src]
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<()> { ... }
}Required methods
fn as_raw_mut_GuidedFilter(&mut self) -> *mut c_void
Provided methods
fn filter(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray,
d_depth: i32
) -> Result<()>
fn filter(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray,
d_depth: i32
) -> Result<()>
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