@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 (18 loc) • 411 B
JavaScript
export class Size {
width
height
constructor(width, height) {
this.width = width
this.height = height
}
static fromJson(jsonObject) {
if (jsonObject == null) return null
return new Size(jsonObject["width"], jsonObject["height"])
}
toJson() {
return {
"width": this.width,
"height": this.height,
}
}
}