Interface BlurOptions

interface BlurOptions {
    borderType?: BorderType;
    borderValue?: number;
    height: number;
    out?: Image;
    width: number;
}

Properties

borderType?: BorderType

Explicit how to handle the borders.

Default

'reflect101'

borderValue?: number

Value of the border if BorderType is 'constant'.

Default

0

height: number

Height of the blurring matrix, must be an odd integer.

out?: Image

Image to which to output.

width: number

Width of the blurring matrix, must be an odd integer.