Package version:

Interface DetectFromSessionImageIdQueryParamProperties

interface DetectFromSessionImageIdQueryParamProperties {
    detectionModel?: string;
    faceIdTimeToLive?: number;
    recognitionModel?: string;
    returnFaceAttributes?: {};
    returnFaceId?: boolean;
    returnFaceLandmarks?: boolean;
    returnRecognitionModel?: boolean;
}

Properties

detectionModel?: string

The 'detectionModel' associated with the detected faceIds. Supported 'detectionModel' values include 'detection_01', 'detection_02' and 'detection_03'. The default value is 'detection_01'. 'detection_03' is recommended since its accuracy is improved on smaller faces (64x64 pixels) and rotated face orientations.

Possible values: "detection_01", "detection_02", "detection_03"

faceIdTimeToLive?: number

The number of seconds for the face ID being cached. Supported range from 60 seconds up to 86400 seconds. The default value is 86400 (24 hours).

recognitionModel?: string

The 'recognitionModel' associated with the detected faceIds. Supported 'recognitionModel' values include 'recognition_01', 'recognition_02', 'recognition_03' or 'recognition_04'. The default value is 'recognition_01'. 'recognition_04' is recommended since its accuracy is improved on faces wearing masks compared with 'recognition_03', and its overall accuracy is improved compared with 'recognition_01' and 'recognition_02'.

Possible values: "recognition_01", "recognition_02", "recognition_03", "recognition_04"

returnFaceAttributes?: {}

Analyze and return the one or more specified face attributes in the comma-separated string like 'returnFaceAttributes=headPose,glasses'. Face attribute analysis has additional computational and time cost.

returnFaceId?: boolean

Return faceIds of the detected faces or not. The default value is true.

returnFaceLandmarks?: boolean

Return face landmarks of the detected faces or not. The default value is false.

returnRecognitionModel?: boolean

Return 'recognitionModel' or not. The default value is false. This is only applicable when returnFaceId = true.