Class: Aws::Comprehend::Types::Geometry
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::Geometry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Information about the location of items on a document page.
For additional information, see [Geometry] in the Amazon Textract API reference.
[1]: docs.aws.amazon.com/textract/latest/dg/API_Geometry.html
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.
4957 4958 4959 4960 4961 4962 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4957 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.
4957 4958 4959 4960 4961 4962 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4957 class Geometry < Struct.new( :bounding_box, :polygon) SENSITIVE = [] include Aws::Structure end |