Class: Google::Apis::VisionV1::Block
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VisionV1::Block
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
 generated/google/apis/vision_v1/representations.rb,
 generated/google/apis/vision_v1/representations.rb
Overview
Logical element on the page.
Instance Attribute Summary collapse
- 
  
    
      #block_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Detected block type (text, image etc) for this block. 
- 
  
    
      #bounding_box  ⇒ Google::Apis::VisionV1::BoundingPoly 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A bounding polygon for the detected image annotation. 
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Confidence of the OCR results on the block. 
- 
  
    
      #paragraphs  ⇒ Array<Google::Apis::VisionV1::Paragraph> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of paragraphs in this block (if this blocks is of type text). 
- 
  
    
      #property  ⇒ Google::Apis::VisionV1::TextProperty 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Additional information detected on the structural component. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Block 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Block. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Block
Returns a new instance of Block
| 249 250 251 | # File 'generated/google/apis/vision_v1/classes.rb', line 249 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#block_type ⇒ String
Detected block type (text, image etc) for this block.
Corresponds to the JSON property blockType
| 227 228 229 | # File 'generated/google/apis/vision_v1/classes.rb', line 227 def block_type @block_type end | 
#bounding_box ⇒ Google::Apis::VisionV1::BoundingPoly
A bounding polygon for the detected image annotation.
Corresponds to the JSON property boundingBox
| 232 233 234 | # File 'generated/google/apis/vision_v1/classes.rb', line 232 def bounding_box @bounding_box end | 
#confidence ⇒ Float
Confidence of the OCR results on the block. Range [0, 1].
Corresponds to the JSON property confidence
| 237 238 239 | # File 'generated/google/apis/vision_v1/classes.rb', line 237 def confidence @confidence end | 
#paragraphs ⇒ Array<Google::Apis::VisionV1::Paragraph>
List of paragraphs in this block (if this blocks is of type text).
Corresponds to the JSON property paragraphs
| 242 243 244 | # File 'generated/google/apis/vision_v1/classes.rb', line 242 def paragraphs @paragraphs end | 
#property ⇒ Google::Apis::VisionV1::TextProperty
Additional information detected on the structural component.
Corresponds to the JSON property property
| 247 248 249 | # File 'generated/google/apis/vision_v1/classes.rb', line 247 def property @property end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 254 255 256 257 258 259 260 | # File 'generated/google/apis/vision_v1/classes.rb', line 254 def update!(**args) @block_type = args[:block_type] if args.key?(:block_type) @bounding_box = args[:bounding_box] if args.key?(:bounding_box) @confidence = args[:confidence] if args.key?(:confidence) @paragraphs = args[:paragraphs] if args.key?(:paragraphs) @property = args[:property] if args.key?(:property) end |