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.
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
| 45 46 47 | # File 'generated/google/apis/vision_v1/classes.rb', line 45 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#features ⇒ Array<Google::Apis::VisionV1::Feature>
Requested features.
Corresponds to the JSON property features
| 33 34 35 | # File 'generated/google/apis/vision_v1/classes.rb', line 33 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
| 38 39 40 | # File 'generated/google/apis/vision_v1/classes.rb', line 38 def image @image end | 
#image_context ⇒ Google::Apis::VisionV1::ImageContext
Image context and/or feature-specific parameters.
Corresponds to the JSON property imageContext
| 43 44 45 | # File 'generated/google/apis/vision_v1/classes.rb', line 43 def image_context @image_context end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 50 51 52 53 54 | # File 'generated/google/apis/vision_v1/classes.rb', line 50 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 |