Files
nut.js/lib/point.class.ts
T
Simon Hofmann f64204e10b Closes #20 (#25)
* Added channel info to Image type

* Renamed adapter and provider class

* Created template matching finder with multi scale support

* Added MatchRequest as a counterpart to MatchResult

* Updated screen

* Formatting

* Renamed probability to confidence

* Naming conventions

* Added latest changes

* Updated scale correction

* Added min value for rescaling to prevent images < 1 px
2019-01-31 01:33:31 +01:00

8 lines
140 B
TypeScript

export class Point {
constructor(public x: number, public y: number) {}
public toString() {
return `(${this.x}, ${this.y})`;
}
}