Module Values.FaceDetectionSource

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

Sourcetype nonrec t = {
  1. timestamp : Timestamp.t option;
    (*

    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.

    *)
  2. face : FaceDetail.t option;
    (*

    The face properties for the detected face.

    *)
}
Sourceval make : ?timestamp:??? -> ?face:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Timestamp.t | `Structure of (string * [> `Float of Percent.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Percent.t ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Float of Float_.t | `Integer of UInteger.t ]) list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t