Information about a face detected in a video analysis request and the time the face was detected in the video.

interface FaceDetection {
    Face?: FaceDetail;
    Timestamp?: number;
}

Properties

Properties

Face?: FaceDetail

The face properties for the detected face.

Timestamp?: number

Time, in milliseconds from the start of the video, that the face was detected. Note that Timestamp is not guaranteed to be accurate to the individual frame where the face first appears.