pub trait FastGlobalSmootherFilterTrait: AlgorithmTrait + FastGlobalSmootherFilterTraitConst {
// Required method
fn as_raw_mut_FastGlobalSmootherFilter(&mut self) -> *mut c_void;
// Provided method
fn filter(
&mut self,
src: &impl ToInputArray,
dst: &mut impl ToOutputArray,
) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::ximgproc::FastGlobalSmootherFilter
Required Methods§
fn as_raw_mut_FastGlobalSmootherFilter(&mut self) -> *mut c_void
Provided Methods§
sourcefn filter(
&mut self,
src: &impl ToInputArray,
dst: &mut impl ToOutputArray,
) -> Result<()>
fn filter( &mut self, src: &impl ToInputArray, dst: &mut impl 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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.