ImageJS
    Preparing search index...

    Interface GaussianBlurXYOptions

    interface GaussianBlurXYOptions {
        borderType?: BorderType;
        out?: Image;
        sigmaX: number;
        sigmaY: number;
        sizeX?: number;
        sizeY?: number;
    }

    Hierarchy

    • GaussianBlurBaseOptions
      • GaussianBlurXYOptions
    Index

    Properties

    borderType?: BorderType

    Specify how the borders should be handled.

    'reflect101'

    out?: Image

    Image to which the resulting image has to be put.

    sigmaX: number

    The standard deviation for the x axis. Specifies the width of the gaussian function along x.

    sigmaY: number

    The standard deviation for the y axis. Specifies the width of the gaussian function along y.

    sizeX?: number

    Size of the X axis kernel.

    2 * Math.ceil(2 * sigmaX) + 1

    sizeY?: number

    Size of the Y axis kernel.

    2 * Math.ceil(2 * sigmaY) + 1