UNPKG

@webarkit/jsfeat-next

Version:

Typescript version of jsfeat for WebARKit

15 lines 311 B
export class keypoint_t { x; y; score; level; angle; constructor(x = 0, y = 0, score = 0, level = 0, angle = -1.0) { this.x = x; this.y = y; this.score = score; this.level = level; this.angle = angle; } } //# sourceMappingURL=keypoint_t.js.map