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.

14 lines (11 loc) 248 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 } }