Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p2beta1/classes.rb,
lib/google/apis/videointelligence_v1p2beta1/representations.rb,
lib/google/apis/videointelligence_v1p2beta1/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) ⇒ GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox
constructor
A new instance of GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox
Returns a new instance of GoogleCloudVideointelligenceV1p2beta1NormalizedBoundingBox.
4254 4255 4256 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bottom ⇒ Float
Bottom Y coordinate.
Corresponds to the JSON property bottom
4237 4238 4239 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4237 def bottom @bottom end |
#left ⇒ Float
Left X coordinate.
Corresponds to the JSON property left
4242 4243 4244 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4242 def left @left end |
#right ⇒ Float
Right X coordinate.
Corresponds to the JSON property right
4247 4248 4249 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4247 def right @right end |
#top ⇒ Float
Top Y coordinate.
Corresponds to the JSON property top
4252 4253 4254 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4252 def top @top end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4259 4260 4261 4262 4263 4264 |
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4259 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 |