Module Values.EyeDirectionSource

Indicates the direction the eyes are gazing in (independent of the head pose) as determined by its pitch and yaw.

Sourcetype nonrec t = {
  1. yaw : Degree.t option;
    (*

    Value representing eye direction on the yaw axis.

    *)
  2. pitch : Degree.t option;
    (*

    Value representing eye direction on the pitch axis.

    *)
  3. confidence : Percent.t option;
    (*

    The confidence that the service has in its predicted eye direction.

    *)
}
Sourceval make : ?yaw:??? -> ?pitch:??? -> ?confidence:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Degree.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