Module Values.EquipmentDetectionSource

Information about an item of Personal Protective Equipment (PPE) detected by DetectProtectiveEquipment. For more information, see DetectProtectiveEquipment.

Sourcetype nonrec t = {
  1. boundingBox : BoundingBox.t option;
    (*

    A bounding box surrounding the item of detected PPE.

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

    The confidence that Amazon Rekognition has that the bounding box (BoundingBox) contains an item of PPE.

    *)
  3. type_ : ProtectiveEquipmentType.t option;
    (*

    The type of detected PPE.

    *)
  4. coversBodyPart : CoversBodyPart.t option;
    (*

    Information about the body part covered by the detected PPE.

    *)
}
Sourceval make : ?boundingBox:??? -> ?confidence:??? -> ?type_:??? -> ?coversBodyPart:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of Percent.t | `Structure of (string * [> `Boolean of Boolean.t | `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