Interface OrientedFastKeypoint

interface OrientedFastKeypoint {
    angle: number;
    origin: Point;
    score: number;
}

Hierarchy

Properties

Properties

angle: number

Orientation of the keypoint defined as the angle in degrees between the x axis , the keypoints origin and the center of mass of the keypoint.

origin: Point

Location of the keypoint in the image.

score: number

Score of the keypoint, the bigger it is, the better the feature. It is the criteria used for the non-maximal suppression.