Face Liveness Detection
Face Liveness Detection is the pipeline that decides whether the person present in the image is authorized. Unauthorized faces are those where false facial verification by using a photo, video, mask or a different substitute for an authorized person’s face is used.
Input Data
- The input data is an image file which we extract from the sent video file.
Output Data
code:0- means the successful result.1- if liveness not passed2- if no face is present.3- found more than one face.4- face is not centered.
description- The description of the processed video.result- The result of the pipeline is the boolean value of image authorization.score- Confidence score for the liveness detection result, ranging from 0.00 to 100.00. Higher values indicate higher confidence in the liveness assessment.
JSON Response Example
"Face Liveness Detection": { "code": 0, "description": "Successful check", "result": true, "score": 90.5}