Interface DrawOrientedKeypointsOptions

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

Hierarchy

Properties

color?: number[]

Annotations color.

Default

[255,0,0]

fill?: boolean

Whether to fill the markers.

Default

false

markerSize?: number

Markers size in pixels.

Default

10

maxNbKeypoints?: number

Maximal number of matches with smallest distance to draw.

Default

keypoints.length

origin?: Point

Origin of the keypoints in the image.

Default

{row: 0, column: 0}

out?: Image

Image to which the resulting image has to be put.

showOrientation?: boolean

Show the orientation of the keypoints.

Default

false

showScore?: boolean

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

Default

false

showScoreOptions?: GetColorsOptions

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