Face Matching (1:1 Verification)
Face Matching verifies whether two face images belong to the same person.
Response Schema
Face Matching Response - FaceMatchingResult
similar
- Type:
boolean - Indicates whether the two faces belong to the same person.
- Returns
trueif the faces match, otherwisefalse.
distance
- Type:
number - Cosine distance between the two face embeddings.
- Lower values = higher similarity.
score
- Type:
number - Range:
[0.0, 1.0] - Confidence score of the verification.
- Higher values indicate stronger confidence that both faces belong to the same person.
Example Response
Listing : Positive Face Match Example
{
"similar": true,
"distance": 0.23,
"score": 0.87
}Listing : Negative Face Match Example
{
"similar": false,
"distance": 0.68,
"score": 0.32
}