FastGlobalSmootherFilter

Objective-C

@interface FastGlobalSmootherFilter : Algorithm

Swift

class FastGlobalSmootherFilter : Algorithm

Interface for implementations of Fast Global Smoother filter.

For more details about this filter see CITE: Min2014 and CITE: Farbman2008 .

Member of Ximgproc

Methods

  • Apply smoothing operation to the source image.

    Declaration

    Objective-C

    - (void)filter:(nonnull Mat *)src dst:(nonnull Mat *)dst;

    Swift

    func filter(src: Mat, dst: Mat)

    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.