Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1beta2/classes.rb,
lib/google/apis/videointelligence_v1beta2/representations.rb,
lib/google/apis/videointelligence_v1beta2/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) ⇒ GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
constructor
A new instance of GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
Returns a new instance of GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.
1878 1879 1880 |
# File 'lib/google/apis/videointelligence_v1beta2/classes.rb', line 1878 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bottom ⇒ Float
Bottom Y coordinate.
Corresponds to the JSON property bottom
1861 1862 1863 |
# File 'lib/google/apis/videointelligence_v1beta2/classes.rb', line 1861 def bottom @bottom end |
#left ⇒ Float
Left X coordinate.
Corresponds to the JSON property left
1866 1867 1868 |
# File 'lib/google/apis/videointelligence_v1beta2/classes.rb', line 1866 def left @left end |
#right ⇒ Float
Right X coordinate.
Corresponds to the JSON property right
1871 1872 1873 |
# File 'lib/google/apis/videointelligence_v1beta2/classes.rb', line 1871 def right @right end |
#top ⇒ Float
Top Y coordinate.
Corresponds to the JSON property top
1876 1877 1878 |
# File 'lib/google/apis/videointelligence_v1beta2/classes.rb', line 1876 def top @top end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1883 1884 1885 1886 1887 1888 |
# File 'lib/google/apis/videointelligence_v1beta2/classes.rb', line 1883 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 |