[][src]Trait opencv::ximgproc::prelude::DTFilter

pub trait DTFilter: AlgorithmTrait {
    pub fn as_raw_DTFilter(&self) -> *const c_void;
pub fn as_raw_mut_DTFilter(&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 Domain Transform filter.

For more details about this filter see Gastal11 .

Required methods

Loading content...

Provided methods

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

Produce domain transform filtering operation on source image.

Parameters

  • src: filtering image with unsigned 8-bit or floating-point 32-bit depth and up to 4 channels.

  • dst: destination 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

impl DTFilter for PtrOfDTFilter[src]

Loading content...