Module Values.FaceSource

Describes the face properties such as the bounding box, face ID, image ID of the input image, and external image ID that you assigned.

Sourcetype nonrec t = {
  1. faceId : FaceId.t option;
    (*

    Unique identifier that Amazon Rekognition assigns to the face.

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

    Bounding box of the face.

    *)
  3. imageId : ImageId.t option;
    (*

    Unique identifier that Amazon Rekognition assigns to the input image.

    *)
  4. externalImageId : ExternalImageId.t option;
    (*

    Identifier that you assign to all the faces in the input image.

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

    Confidence level that the bounding box contains a face (and not a different object such as a tree).

    *)
  6. indexFacesModelVersion : IndexFacesModelVersion.t option;
    (*

    The version of the face detect and storage model that was used when indexing the face vector.

    *)
  7. userId : UserId.t option;
    (*

    Unique identifier assigned to the user.

    *)
}
Sourceval make : ?faceId:??? -> ?boundingBox:??? -> ?imageId:??? -> ?externalImageId:??? -> ?confidence:??? -> ?indexFacesModelVersion:??? -> ?userId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `String of FaceId.t | `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