Class: Aws::Textract::Types::Geometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::Geometry
- Defined in:
- gems/aws-sdk-textract/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.
-
#rotation_angle ⇒ Float
Provides a numerical value corresponding to the rotation of the text.
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
An axis-aligned coarse representation of the location of the recognized item on the document page.
1325 1326 1327 1328 1329 1330 1331 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 1325 class Geometry < Struct.new( :bounding_box, :polygon, :rotation_angle) SENSITIVE = [] include Aws::Structure end |
#polygon ⇒ Array<Types::Point>
Within the bounding box, a fine-grained polygon around the recognized item.
1325 1326 1327 1328 1329 1330 1331 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 1325 class Geometry < Struct.new( :bounding_box, :polygon, :rotation_angle) SENSITIVE = [] include Aws::Structure end |
#rotation_angle ⇒ Float
Provides a numerical value corresponding to the rotation of the text.
1325 1326 1327 1328 1329 1330 1331 |
# File 'gems/aws-sdk-textract/lib/aws-sdk-textract/types.rb', line 1325 class Geometry < Struct.new( :bounding_box, :polygon, :rotation_angle) SENSITIVE = [] include Aws::Structure end |