Skip to content

Face Recognition

Secure and convenient face recognition for authentication and verification purposes.

How to use?

To use Face Recognition first of all you need to register your face through API.

Then Face Recognition will process the face when video processing action will be called, if it is included in your Project settings.

How it works?

It will take a frame from a video and after detecting a face authenticate it. The result will be a data based on the face in the frame.

Output Data

  • code:
    • 0 - means the successful result.
    • 1 - if face from the input and face in enrollment do not match.
    • 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 score for each consecutive frame in the video file.

JSON Response Example

"Face Recognition": {
"code": 0,
"description": "Successful check"
}