Module Values.AgeRangeSource

Structure containing the estimated age range, in years, for a face. Amazon Rekognition estimates an age range for faces detected in the input image. Estimated age ranges can overlap. A face of a 5-year-old might have an estimated range of 4-6, while the face of a 6-year-old might have an estimated range of 4-8.

Sourcetype nonrec t = {
  1. low : UInteger.t option;
    (*

    The lowest estimated age.

    *)
  2. high : UInteger.t option;
    (*

    The highest estimated age.

    *)
}
Sourceval make : ?low:??? -> ?high:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of UInteger.t ]) 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