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.

18 lines (15 loc) 370 B
export class Rect { bottom top left right static fromJson(jsonObject) { if (jsonObject == null) return null const result = new Rect() result.bottom = jsonObject["bottom"] result.top = jsonObject["top"] result.left = jsonObject["left"] result.right = jsonObject["right"] return result } }