ImageJS
    Preparing search index...

    Interface DrawMatchesOptions

    interface DrawMatchesOptions {
        circleDiameter?: number;
        maxNbMatches?: number;
        showDistance?: boolean;
        showDistanceOptions?: GetColorsOptions;
        strokeColor?: number[];
    }
    Index

    Properties

    circleDiameter?: number

    Circles diameter in pixels.

    10

    maxNbMatches?: number

    Maximal number of keypoints with best score to draw.

    matches.length

    showDistance?: boolean

    Whether the matches should be colored depending on the distance.

    false

    showDistanceOptions?: GetColorsOptions

    Options for the coloring of the matches depending on their distance (useful if showDistance = true).

    strokeColor?: number[]

    Annotations color - An array of numerical values, one for each channel of the image. If less values are defined than there are channels in the image, the remaining channels will be set to 0.

    [255,0,0]