Module Values.PersonDetailSource

Details about a person detected in a video analysis request.

Sourcetype nonrec t = {
  1. index : PersonIndex.t option;
    (*

    Identifier for the person detected person within a video. Use to keep track of the person throughout the video. The identifier is not stored by Amazon Rekognition.

    *)
  2. boundingBox : BoundingBox.t option;
    (*

    Bounding box around the detected person.

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

    Face details for the detected person.

    *)
}
Sourceval make : ?index:??? -> ?boundingBox:??? -> ?face:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PersonIndex.t | `Structure of (string * [> `Float of Float_.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