Class: Google::Apis::VisionV1::ReferenceImage
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::ReferenceImage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb
Overview
A ReferenceImage
represents a product image and its associated metadata,
such as bounding boxes.
Instance Attribute Summary collapse
-
#bounding_polys ⇒ Array<Google::Apis::VisionV1::BoundingPoly>
Optional.
-
#name ⇒ String
The resource name of the reference image.
-
#uri ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReferenceImage
constructor
A new instance of ReferenceImage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ReferenceImage
Returns a new instance of ReferenceImage
10189 10190 10191 |
# File 'generated/google/apis/vision_v1/classes.rb', line 10189 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bounding_polys ⇒ Array<Google::Apis::VisionV1::BoundingPoly>
Optional. Bounding polygons around the areas of interest in the reference
image.
If this field is empty, the system will try to detect regions of
interest. At most 10 bounding polygons will be used.
The provided shape is converted into a non-rotated rectangle. Once
converted, the small edge of the rectangle must be greater than or equal
to 300 pixels. The aspect ratio must be 1:4 or less (i.e. 1:3 is ok; 1:5
is not).
Corresponds to the JSON property boundingPolys
10172 10173 10174 |
# File 'generated/google/apis/vision_v1/classes.rb', line 10172 def bounding_polys @bounding_polys end |
#name ⇒ String
The resource name of the reference image.
Format is:
projects/PROJECT_ID/locations/LOC_ID/products/PRODUCT_ID/referenceImages/
IMAGE_ID
.
This field is ignored when creating a reference image.
Corresponds to the JSON property name
10181 10182 10183 |
# File 'generated/google/apis/vision_v1/classes.rb', line 10181 def name @name end |
#uri ⇒ String
Required. The Google Cloud Storage URI of the reference image.
The URI must start with gs://
.
Corresponds to the JSON property uri
10187 10188 10189 |
# File 'generated/google/apis/vision_v1/classes.rb', line 10187 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10194 10195 10196 10197 10198 |
# File 'generated/google/apis/vision_v1/classes.rb', line 10194 def update!(**args) @bounding_polys = args[:bounding_polys] if args.key?(:bounding_polys) @name = args[:name] if args.key?(:name) @uri = args[:uri] if args.key?(:uri) end |