ImageJS
    Preparing search index...

    Interface RemoveClosePointsOptions

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

    Properties

    channel?: number

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

    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.

    0

    kind: "minimum" | "maximum"

    Shows what kind of extremum is being computed.

    'maximum'