Module Values.ProtectiveEquipmentBodyPartSource

Information about a body part detected by DetectProtectiveEquipment that contains PPE. An array of ProtectiveEquipmentBodyPart objects is returned for each person detected by DetectProtectiveEquipment.

Sourcetype nonrec t = {
  1. name : BodyPart.t option;
    (*

    The detected body part.

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

    The confidence that Amazon Rekognition has in the detection accuracy of the detected body part.

    *)
  3. equipmentDetections : EquipmentDetections.t option;
    (*

    An array of Personal Protective Equipment items detected around a body part.

    *)
}
Sourceval make : ?name:??? -> ?confidence:??? -> ?equipmentDetections:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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