Trait opencv::prelude::FastGlobalSmootherFilter
source · pub trait FastGlobalSmootherFilter: AlgorithmTrait + FastGlobalSmootherFilterConst {
// Required method
fn as_raw_mut_FastGlobalSmootherFilter(&mut self) -> *mut c_void;
// Provided method
fn filter(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray
) -> Result<()> { ... }
}Expand description
Interface for implementations of Fast Global Smoother filter.
For more details about this filter see Min2014 and Farbman2008 .
Required Methods§
fn as_raw_mut_FastGlobalSmootherFilter(&mut self) -> *mut c_void
Provided Methods§
sourcefn filter(
&mut self,
src: &dyn ToInputArray,
dst: &mut dyn ToOutputArray
) -> Result<()>
fn filter( &mut self, src: &dyn ToInputArray, dst: &mut dyn ToOutputArray ) -> Result<()>
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.