ImageJS
    Preparing search index...

    Interface DrawKeypointsOptions

    interface DrawKeypointsOptions {
        fill?: boolean;
        markerSize?: number;
        maxNbKeypoints?: number;
        origin?: Point;
        out?: Image;
        showScore?: boolean;
        showScoreOptions?: GetColorsOptions;
        strokeColor?: number[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    fill?: boolean

    Whether to fill the markers.

    false

    markerSize?: number

    Markers size in pixels.

    10

    maxNbKeypoints?: number

    Maximal number of matches with smallest distance to draw.

    keypoints.length

    origin?: Point

    Origin of the keypoints in the image.

    {row: 0, column: 0}

    out?: Image

    Image to which the resulting image has to be put.

    showScore?: boolean

    Whether the score of the keypoints should be reflected in their color.

    false

    showScoreOptions?: GetColorsOptions

    Options for the coloring of the keypoints depending on their score (useful if showScore = true).

    strokeColor?: number[]

    Keypoint's 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]