ImageJS
    Preparing search index...

    Interface BlurOptions

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

    Properties

    borderType?: BorderType

    Explicit how to handle the borders.

    'reflect101'

    borderValue?: number

    Value of the border if BorderType is 'constant'.

    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.