Class: Google::Apis::VisionV1::AnnotateImageRequest
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::AnnotateImageRequest
- 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
Request for performing Google Cloud Vision API tasks over a user-provided image, with user-requested features, and with context information.
Instance Attribute Summary collapse
-
#features ⇒ Array<Google::Apis::VisionV1::Feature>
Requested features.
-
#image ⇒ Google::Apis::VisionV1::Image
Client image to perform Google Cloud Vision API tasks over.
-
#image_context ⇒ Google::Apis::VisionV1::ImageContext
Image context and/or feature-specific parameters.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AnnotateImageRequest
constructor
A new instance of AnnotateImageRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AnnotateImageRequest
Returns a new instance of AnnotateImageRequest
92 93 94 |
# File 'generated/google/apis/vision_v1/classes.rb', line 92 def initialize(**args) update!(**args) end |
Instance Attribute Details
#features ⇒ Array<Google::Apis::VisionV1::Feature>
Requested features.
Corresponds to the JSON property features
80 81 82 |
# File 'generated/google/apis/vision_v1/classes.rb', line 80 def features @features end |
#image ⇒ Google::Apis::VisionV1::Image
Client image to perform Google Cloud Vision API tasks over.
Corresponds to the JSON property image
85 86 87 |
# File 'generated/google/apis/vision_v1/classes.rb', line 85 def image @image end |
#image_context ⇒ Google::Apis::VisionV1::ImageContext
Image context and/or feature-specific parameters.
Corresponds to the JSON property imageContext
90 91 92 |
# File 'generated/google/apis/vision_v1/classes.rb', line 90 def image_context @image_context end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
97 98 99 100 101 |
# File 'generated/google/apis/vision_v1/classes.rb', line 97 def update!(**args) @features = args[:features] if args.key?(:features) @image = args[:image] if args.key?(:image) @image_context = args[:image_context] if args.key?(:image_context) end |