Package version:

Interface FindSimilarResultOutput

Response body for find similar face operation.

interface FindSimilarResultOutput {
    confidence: number;
    faceId?: string;
    persistedFaceId?: string;
}

Properties

confidence: number

Confidence value of the candidate. The higher confidence, the more similar. Range between [0,1].

faceId?: string

faceId of candidate face when find by faceIds. faceId is created by "Detect" and will expire 24 hours after the detection call.

persistedFaceId?: string

persistedFaceId of candidate face when find by faceListId or largeFaceListId. persistedFaceId in face list/large face list is persisted and will not expire.