Class: Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1AnnotateImageRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1AnnotateImageRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1p2beta1/classes.rb,
 generated/google/apis/vision_v1p2beta1/representations.rb,
 generated/google/apis/vision_v1p2beta1/representations.rb
Overview
Request for performing Google Cloud Vision API tasks over a user-provided image, with user-requested features.
Instance Attribute Summary collapse
- 
  
    
      #features  ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Feature> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Requested features. 
- 
  
    
      #image  ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Image 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Client image to perform Google Cloud Vision API tasks over. 
- 
  
    
      #image_context  ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1ImageContext 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Image context and/or feature-specific parameters. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVisionV1p2beta1AnnotateImageRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudVisionV1p2beta1AnnotateImageRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVisionV1p2beta1AnnotateImageRequest
Returns a new instance of GoogleCloudVisionV1p2beta1AnnotateImageRequest
| 214 215 216 | # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 214 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#features ⇒ Array<Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Feature>
Requested features.
Corresponds to the JSON property features
| 202 203 204 | # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 202 def features @features end | 
#image ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1Image
Client image to perform Google Cloud Vision API tasks over.
Corresponds to the JSON property image
| 207 208 209 | # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 207 def image @image end | 
#image_context ⇒ Google::Apis::VisionV1p2beta1::GoogleCloudVisionV1p2beta1ImageContext
Image context and/or feature-specific parameters.
Corresponds to the JSON property imageContext
| 212 213 214 | # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 212 def image_context @image_context end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 219 220 221 222 223 | # File 'generated/google/apis/vision_v1p2beta1/classes.rb', line 219 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 |