DTFilter

Objective-C

@interface DTFilter : Algorithm

Swift

class DTFilter : Algorithm

Interface for realizations of Domain Transform filter.

For more details about this filter see CITE: Gastal11 .

Member of Ximgproc

Methods

  • Produce domain transform filtering operation on source image.

    Declaration

    Objective-C

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

    Swift

    func filter(src: Mat, dst: Mat, dDepth: Int32)

    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().

  • Produce domain transform filtering operation on source image.

    Declaration

    Objective-C

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

    Swift

    func filter(src: Mat, dst: Mat)

    Parameters

    src

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

    dst

    destination image.

    to src.depth().