Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout (googly_document_ai v0.1.0)

Copy Markdown View Source

Visual element describing a layout unit on a page.

Attributes

  • bounding_poly (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1BoundingPoly.t()) - The bounding polygon for the Layout.
  • confidence (type: number()) - Confidence of the current Layout within context of the object this layout is for. For example, confidence can be for a single token, a table, a visual element, etc. depending on context. Range [0, 1].
  • orientation (type: String.t()) - Detected orientation for the Layout.
  • text_anchor (type: Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentTextAnchor.t()) - Text anchor indexing into the Document.text.

Summary

Types

t()

@type t() :: %Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentPageLayout{
  bounding_poly:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1BoundingPoly.t() | nil,
  confidence: number() | nil,
  orientation: String.t() | nil,
  text_anchor:
    Googly.DocumentAI.Model.GoogleCloudDocumentaiV1DocumentTextAnchor.t() | nil
}