ImageJS
    Preparing search index...

    Interface GaussianBlurSigmaOptions

    interface GaussianBlurSigmaOptions {
        borderType?: BorderType;
        out?: Image;
        sigma: number;
        size?: number;
    }

    Hierarchy

    • GaussianBlurBaseOptions
      • GaussianBlurSigmaOptions
    Index

    Properties

    borderType?: BorderType

    Specify how the borders should be handled.

    'reflect101'

    out?: Image

    Image to which the resulting image has to be put.

    sigma: number

    The standard deviation. Specifies the width of the gaussian function in the case where it is the same for x and y.

    size?: number

    Size of the kernel.

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