Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p3beta1/classes.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb,
lib/google/apis/videointelligence_v1p3beta1/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) ⇒ GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1NormalizedBoundingBox.
5322 5323 5324 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5322 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bottom ⇒ Float
Bottom Y coordinate.
Corresponds to the JSON property bottom
5305 5306 5307 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5305 def bottom @bottom end |
#left ⇒ Float
Left X coordinate.
Corresponds to the JSON property left
5310 5311 5312 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5310 def left @left end |
#right ⇒ Float
Right X coordinate.
Corresponds to the JSON property right
5315 5316 5317 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5315 def right @right end |
#top ⇒ Float
Top Y coordinate.
Corresponds to the JSON property top
5320 5321 5322 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5320 def top @top end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5327 5328 5329 5330 5331 5332 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5327 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 |