Interface GaussianBlurSigmaOptions

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

Hierarchy

  • GaussianBlurBaseOptions
    • GaussianBlurSigmaOptions

Properties

borderType?: BorderType

Specify how the borders should be handled.

Default

'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.

Default

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