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.
      1320 1321 1322 1323 1324 1325  | 
    
      # File 'lib/aws-sdk-textract/types.rb', line 1320 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.
      1320 1321 1322 1323 1324 1325  | 
    
      # File 'lib/aws-sdk-textract/types.rb', line 1320 class Geometry < Struct.new( :bounding_box, :polygon) SENSITIVE = [] include Aws::Structure end  |