ImageJS
    Preparing search index...

    Interface CloseOptions

    interface CloseOptions {
        iterations?: number;
        kernel?: number[][];
    }
    Index

    Properties

    Properties

    iterations?: number

    Number of iterations of the algorithm.

    1

    kernel?: number[][]

    3x3 matrix. The kernel can only have ones and zeros. Accessing a value: kernel[row][column].

    [[1, 1, 1], [1, 1, 1], [1, 1, 1]]