Class: Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageLayout
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentPageLayout
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/documentai_v1/classes.rb,
 lib/google/apis/documentai_v1/representations.rb,
 lib/google/apis/documentai_v1/representations.rb
Overview
Visual element describing a layout unit on a page.
Instance Attribute Summary collapse
- 
  
    
      #bounding_poly  ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1BoundingPoly 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A bounding polygon for the detected image annotation. 
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Confidence of the current Layout within context of the object this layout is for. 
- 
  
    
      #orientation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Detected orientation for the Layout. 
- 
  
    
      #text_anchor  ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentTextAnchor 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Text reference indexing into the Document.text. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDocumentaiV1beta1DocumentPageLayout 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudDocumentaiV1beta1DocumentPageLayout. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta1DocumentPageLayout
Returns a new instance of GoogleCloudDocumentaiV1beta1DocumentPageLayout.
| 4351 4352 4353 | # File 'lib/google/apis/documentai_v1/classes.rb', line 4351 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#bounding_poly ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1BoundingPoly
A bounding polygon for the detected image annotation.
Corresponds to the JSON property boundingPoly
| 4332 4333 4334 | # File 'lib/google/apis/documentai_v1/classes.rb', line 4332 def bounding_poly @bounding_poly end | 
#confidence ⇒ Float
Confidence of the current Layout within context of the object this layout is
for. e.g. confidence can be for a single token, a table, a visual element, etc.
depending on context. Range [0, 1].
Corresponds to the JSON property confidence
| 4339 4340 4341 | # File 'lib/google/apis/documentai_v1/classes.rb', line 4339 def confidence @confidence end | 
#orientation ⇒ String
Detected orientation for the Layout.
Corresponds to the JSON property orientation
| 4344 4345 4346 | # File 'lib/google/apis/documentai_v1/classes.rb', line 4344 def orientation @orientation end | 
#text_anchor ⇒ Google::Apis::DocumentaiV1::GoogleCloudDocumentaiV1beta1DocumentTextAnchor
Text reference indexing into the Document.text.
Corresponds to the JSON property textAnchor
| 4349 4350 4351 | # File 'lib/google/apis/documentai_v1/classes.rb', line 4349 def text_anchor @text_anchor end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4356 4357 4358 4359 4360 4361 | # File 'lib/google/apis/documentai_v1/classes.rb', line 4356 def update!(**args) @bounding_poly = args[:bounding_poly] if args.key?(:bounding_poly) @confidence = args[:confidence] if args.key?(:confidence) @orientation = args[:orientation] if args.key?(:orientation) @text_anchor = args[:text_anchor] if args.key?(:text_anchor) end |