Package version:

Interface IdentificationResultOutput

Identify result.

interface IdentificationResultOutput {
    candidates: Array<IdentificationCandidateOutput>;
    faceId: string;
}

Properties

Properties

Identified person candidates for that face (ranked by confidence). Array size should be no larger than input maxNumOfCandidatesReturned. If no person is identified, will return an empty array.

faceId: string

faceId of the query face.