Interface RemoveClosePointsOptions

interface RemoveClosePointsOptions {
    channel?: number;
    distance: number;
    kind: "maximum" | "minimum";
}

Properties

channel?: number

Channel number of an image where the extremum should be found.

Default

0

distance: number

The minimum distance between points in the returned filtered points. If the distance is less or equal to 0, no point is removed.

Default

0

kind: "maximum" | "minimum"

Shows what kind of extremum is being computed.

Default

'maximum'