API
Step by Step on How to Use Face Occlusion Service
Parameters
In postman, send a POST to coordinator: http://localhost:4004/NFFS-FIQA/v1/predict
{
"images": ["base64"],
}Payload below if you want to determine specific threshold for each analytics inside FIQA.
{
"additional_params": {
"face_detection": {
"threshold": 0.9
},
"face_occlusion": {
"threshold": 0.6
},
"face_iqa": {
"threshold": 0.435
}
},
"images": ["base64"],
}images base64 image contains face image that wants to be enrolled
Response
1. Success (Face Accepted for Enrollment)
2. Unsuccessful (Face not Detected or Multiple Face Detected)
3. Unsuccessfull (Face Occluded)
4. Unsuccessful (Face Quality not Match)
Error
Last updated
Was this helpful?