[][src]Trait opencv::hub_prelude::FastGlobalSmootherFilter

pub trait FastGlobalSmootherFilter: AlgorithmTrait {
    pub fn as_raw_FastGlobalSmootherFilter(&self) -> *const c_void;
pub fn as_raw_mut_FastGlobalSmootherFilter(&mut self) -> *mut c_void; pub fn filter(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut dyn ToOutputArray
    ) -> Result<()> { ... } }

Interface for implementations of Fast Global Smoother filter.

For more details about this filter see Min2014 and Farbman2008 .

Required methods

Loading content...

Provided methods

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

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.

Loading content...

Implementors

Loading content...