Interface FastKeypoint

interface FastKeypoint {
    origin: Point;
    score: number;
}

Hierarchy

Properties

Properties

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.