Class: Aws::Textract::Types::Geometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::Geometry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
Information about where the following items are located on a document page: detected page, text, key-value pairs, tables, table cells, and selection elements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bounding_box ⇒ Types::BoundingBox
An axis-aligned coarse representation of the location of the recognized item on the document page.
-
#polygon ⇒ Array<Types::Point>
Within the bounding box, a fine-grained polygon around the recognized item.
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
An axis-aligned coarse representation of the location of the recognized item on the document page.
689 690 691 692 693 694 |
# File 'lib/aws-sdk-textract/types.rb', line 689 class Geometry < Struct.new( :bounding_box, :polygon) SENSITIVE = [] include Aws::Structure end |
#polygon ⇒ Array<Types::Point>
Within the bounding box, a fine-grained polygon around the recognized item.
689 690 691 692 693 694 |
# File 'lib/aws-sdk-textract/types.rb', line 689 class Geometry < Struct.new( :bounding_box, :polygon) SENSITIVE = [] include Aws::Structure end |