Class: Google::Apis::DlpV2::GooglePrivacyDlpV2BoundingBox
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2BoundingBox
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
 generated/google/apis/dlp_v2/representations.rb,
 generated/google/apis/dlp_v2/representations.rb
Overview
Bounding box encompassing detected text within an image.
Instance Attribute Summary collapse
- 
  
    
      #height  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Height of the bounding box in pixels. 
- 
  
    
      #left  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Left coordinate of the bounding box. 
- 
  
    
      #top  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Top coordinate of the bounding box. 
- 
  
    
      #width  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Width of the bounding box in pixels. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GooglePrivacyDlpV2BoundingBox 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GooglePrivacyDlpV2BoundingBox. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2BoundingBox
Returns a new instance of GooglePrivacyDlpV2BoundingBox
| 292 293 294 | # File 'generated/google/apis/dlp_v2/classes.rb', line 292 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#height ⇒ Fixnum
Height of the bounding box in pixels.
Corresponds to the JSON property height
| 275 276 277 | # File 'generated/google/apis/dlp_v2/classes.rb', line 275 def height @height end | 
#left ⇒ Fixnum
Left coordinate of the bounding box. (0,0) is upper left.
Corresponds to the JSON property left
| 280 281 282 | # File 'generated/google/apis/dlp_v2/classes.rb', line 280 def left @left end | 
#top ⇒ Fixnum
Top coordinate of the bounding box. (0,0) is upper left.
Corresponds to the JSON property top
| 285 286 287 | # File 'generated/google/apis/dlp_v2/classes.rb', line 285 def top @top end | 
#width ⇒ Fixnum
Width of the bounding box in pixels.
Corresponds to the JSON property width
| 290 291 292 | # File 'generated/google/apis/dlp_v2/classes.rb', line 290 def width @width end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 297 298 299 300 301 302 | # File 'generated/google/apis/dlp_v2/classes.rb', line 297 def update!(**args) @height = args[:height] if args.key?(:height) @left = args[:left] if args.key?(:left) @top = args[:top] if args.key?(:top) @width = args[:width] if args.key?(:width) end |