@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 (16 loc) • 456 B
JavaScript
export class SearchPersonRequest {
imageUpload
groupIdsForSearch
threshold
limit
detectAll
outputImageParams
constructor(image, params) {
this.imageUpload = image
this.groupIdsForSearch = params?.groupIdsForSearch
this.threshold = params?.threshold
this.limit = params?.limit
this.detectAll = params?.detectAll ?? false
this.outputImageParams = params?.outputImageParams
}
}