Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/videointelligence_v1/classes.rb,
lib/google/apis/videointelligence_v1/representations.rb,
lib/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox

Returns a new instance of GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox.



2180
2181
2182
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 2180

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bottomFloat

Bottom Y coordinate. Corresponds to the JSON property bottom

Returns:

  • (Float)


2163
2164
2165
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 2163

def bottom
  @bottom
end

#leftFloat

Left X coordinate. Corresponds to the JSON property left

Returns:

  • (Float)


2168
2169
2170
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 2168

def left
  @left
end

#rightFloat

Right X coordinate. Corresponds to the JSON property right

Returns:

  • (Float)


2173
2174
2175
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 2173

def right
  @right
end

#topFloat

Top Y coordinate. Corresponds to the JSON property top

Returns:

  • (Float)


2178
2179
2180
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 2178

def top
  @top
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2185
2186
2187
2188
2189
2190
# File 'lib/google/apis/videointelligence_v1/classes.rb', line 2185

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