Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/videointelligence_v1/classes.rb,
 generated/google/apis/videointelligence_v1/representations.rb,
 generated/google/apis/videointelligence_v1/representations.rb
Overview
Normalized bounding box. The normalized vertex coordinates are relative to the original image. Range: [0, 1].
Instance Attribute Summary collapse
- 
  
    
      #bottom  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Bottom Y coordinate. 
- 
  
    
      #left  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Left X coordinate. 
- 
  
    
      #right  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Right X coordinate. 
- 
  
    
      #top  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Top Y coordinate. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox
Returns a new instance of GoogleCloudVideointelligenceV1p1beta1NormalizedBoundingBox
| 1635 1636 1637 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1635 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#bottom ⇒ Float
Bottom Y coordinate.
Corresponds to the JSON property bottom
| 1618 1619 1620 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1618 def bottom @bottom end | 
#left ⇒ Float
Left X coordinate.
Corresponds to the JSON property left
| 1623 1624 1625 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1623 def left @left end | 
#right ⇒ Float
Right X coordinate.
Corresponds to the JSON property right
| 1628 1629 1630 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1628 def right @right end | 
#top ⇒ Float
Top Y coordinate.
Corresponds to the JSON property top
| 1633 1634 1635 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1633 def top @top end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1640 1641 1642 1643 1644 1645 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1640 def update!(**args) @bottom = args[:bottom] if args.key?(:bottom) @left = args[:left] if args.key?(:left) @right = args[:right] if args.key?(:right) @top = args[:top] if args.key?(:top) end |