ImageJS
    Preparing search index...

    Interface DrawOrientedKeypointsOptions

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

    Hierarchy (View Summary)

    Index

    Properties

    color?: number[]

    Annotations color.

    [255,0,0]

    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.

    showOrientation?: boolean

    Show the orientation of the keypoints.

    false

    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).