Module Values.PersonMatchSource

Information about a person whose face matches a face(s) in an Amazon Rekognition collection. Includes information about the faces in the Amazon Rekognition collection (FaceMatch), information about the person (PersonDetail), and the time stamp for when the person was detected in a video. An array of PersonMatch objects is returned by GetFaceSearch.

Sourcetype nonrec t = {
  1. timestamp : Timestamp.t option;
    (*

    The time, in milliseconds from the beginning of the video, that the person was matched in the video.

    *)
  2. person : PersonDetail.t option;
    (*

    Information about the matched person.

    *)
  3. faceMatches : FaceMatchList.t option;
    (*

    Information about the faces in the input collection that match the face of a person in the video.

    *)
}
Sourceval make : ?timestamp:??? -> ?person:??? -> ?faceMatches:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `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 ] list | `Long of Timestamp.t | `Structure of (string * [> `Long of PersonIndex.t | `Structure of (string * [> `Float of Float_.t | `List of [> `Structure of (string * [> `Enum of string | `Float of Percent.t ]) list ] list | `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Float of Float_.t | `Integer of UInteger.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