Module Values.ProtectiveEquipmentPersonSource

A person detected by a call to DetectProtectiveEquipment. The API returns all persons detected in the input image in an array of ProtectiveEquipmentPerson objects.

Sourcetype nonrec t = {
  1. bodyParts : BodyParts.t option;
    (*

    An array of body parts detected on a person's body (including body parts without PPE).

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

    A bounding box around the detected person.

    *)
  3. confidence : Percent.t option;
    (*

    The confidence that Amazon Rekognition has that the bounding box contains a person.

    *)
  4. id : UInteger.t option;
    (*

    The identifier for the detected person. The identifier is only unique for a single call to DetectProtectiveEquipment.

    *)
}
Sourceval make : ?bodyParts:??? -> ?boundingBox:??? -> ?confidence:??? -> ?id:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `Integer of UInteger.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Percent.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Percent.t | `Structure of (string * [> `Boolean of Boolean.t | `Float of Float_.t ]) list ]) list ] list ]) list ] list | `Structure of (string * [> `Float of Float_.t ]) 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