Module Values.FaceMatchSource

Provides face metadata. In addition, it also provides the confidence in the match of this face with the input face.

Sourcetype nonrec t = {
  1. similarity : Percent.t option;
    (*

    Confidence in the match of this face with the input face.

    *)
  2. face : Face.t option;
    (*

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

    *)
}
Sourceval make : ?similarity:??? -> ?face:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Percent.t | `Structure of (string * [> `Float of Percent.t | `String of FaceId.t | `Structure of (string * [> `Float of Float_.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