Interface MedianFilterOptions

interface MedianFilterOptions {
    borderType: BorderType;
    borderValue?: number;
    cellSize: number;
}

Properties

borderType: BorderType

Type of border algorithm to interpolate from.

Default

'reflect101'

borderValue?: number

Value of border.

cellSize: number

The radius of the cell to extract median value from. Must be odd.

Default

1