Class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionRaiInfoDetectedLabelsBoundingBox

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb

Overview

An integer bounding box of original pixels of the image for the detected labels.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudAiLargeModelsVisionRaiInfoDetectedLabelsBoundingBox

Returns a new instance of CloudAiLargeModelsVisionRaiInfoDetectedLabelsBoundingBox.



352
353
354
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 352

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

Instance Attribute Details

#x1Fixnum

The X coordinate of the top-left corner, in pixels. Corresponds to the JSON property x1

Returns:

  • (Fixnum)


335
336
337
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 335

def x1
  @x1
end

#x2Fixnum

The X coordinate of the bottom-right corner, in pixels. Corresponds to the JSON property x2

Returns:

  • (Fixnum)


340
341
342
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 340

def x2
  @x2
end

#y1Fixnum

The Y coordinate of the top-left corner, in pixels. Corresponds to the JSON property y1

Returns:

  • (Fixnum)


345
346
347
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 345

def y1
  @y1
end

#y2Fixnum

The Y coordinate of the bottom-right corner, in pixels. Corresponds to the JSON property y2

Returns:

  • (Fixnum)


350
351
352
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 350

def y2
  @y2
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



357
358
359
360
361
362
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 357

def update!(**args)
  @x1 = args[:x1] if args.key?(:x1)
  @x2 = args[:x2] if args.key?(:x2)
  @y1 = args[:y1] if args.key?(:y1)
  @y2 = args[:y2] if args.key?(:y2)
end