UNPKG

@regulaforensics/face-sdk

Version:

This is an npm module for Regula Face SDK. It allows you to easily compaire faces using your phone's camera.

21 lines (17 loc) 347 B
export class Point { x y static fromJson(jsonObject) { if (jsonObject == null) return null const result = new Point() result.x = jsonObject["x"] result.y = jsonObject["y"] return result } toJson() { return { "x": this.x, "y": this.y, } } }