Module Values.UnindexedFaceSource

A face that IndexFaces detected, but didn't index. Use the Reasons response attribute to determine why a face wasn't indexed.

Sourcetype nonrec t = {
  1. reasons : Reasons.t option;
    (*

    An array of reasons that specify why a face wasn't indexed. EXTREME_POSE - The face is at a pose that can't be detected. For example, the head is turned too far away from the camera. EXCEEDS_MAX_FACES - The number of faces detected is already higher than that specified by the MaxFaces input parameter for IndexFaces. LOW_BRIGHTNESS - The image is too dark. LOW_SHARPNESS - The image is too blurry. LOW_CONFIDENCE - The face was detected with a low confidence. SMALL_BOUNDING_BOX - The bounding box around the face is too small.

    *)
  2. faceDetail : FaceDetail.t option;
    (*

    The structure that contains attributes of a face that IndexFacesdetected, but didn't index.

    *)
}
Sourceval make : ?reasons:??? -> ?faceDetail:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `Structure of (string * [> `Float of Percent.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 ]
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