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.score
- Similarity score between the input face and the enrolled face, ranging from 0.00 to 100.00. Higher values indicate greater similarity and confidence in the face match.
JSON Response Example
"Face Recognition": { "code": 0, "description": "Successful check", "score": 99.99 }