Module Values.GeometrySource

Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.

Sourcetype nonrec t = {
  1. boundingBox : BoundingBox.t option;
    (*

    An axis-aligned coarse representation of the location of the recognized item on the document page.

    *)
  2. polygon : Polygon.t option;
    (*

    Within the bounding box, a fine-grained polygon around the recognized item.

    *)
  3. rotationAngle : Angle.t option;
    (*

    Provides a numerical value corresponding to the rotation of the text.

    *)
}
Sourceval make : ?boundingBox:??? -> ?polygon:??? -> ?rotationAngle:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Angle.t | `List of [> `Structure of (string * [> `Float of Float_.t ]) list ] list | `Structure of (string * [> `Float of Float_.t ]) 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