Module Values.ImageQualitySource

Identifies face image brightness and sharpness.

Sourcetype nonrec t = {
  1. brightness : Float_.t option;
    (*

    Value representing brightness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a brighter face image.

    *)
  2. sharpness : Float_.t option;
    (*

    Value representing sharpness of the face. The service returns a value between 0 and 100 (inclusive). A higher value indicates a sharper face image.

    *)
}
Sourceval make : ?brightness:??? -> ?sharpness:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Float_.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