image-js
    Preparing search index...

    Interface GradientFilterXYOptions

    interface GradientFilterXYOptions {
        bitDepth?: BitDepth;
        borderType?: BorderType;
        borderValue?: number;
        kernelX: number[][];
        kernelY: number[][];
    }

    Hierarchy (View Summary)

    Index

    Properties

    bitDepth?: BitDepth

    Specify the bit depth of the resulting image.

    image.bitDepth

    borderType?: BorderType

    Specify how the borders should be handled.

    'replicate'

    borderValue?: number

    Value of the border if BorderType is 'constant'.

    0

    kernelX: number[][]

    Kernel along x axis.

    kernelY: number[][]

    Kernel along y axis.