Skip to content

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 passed
    • 2 - 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.

JSON Response Example

"Face Liveness Detection": {
"code": 0,
"description": "Successful check",
"result": true
}