Class: Google::Apis::VisionV1::Image
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1::Image
 
 
- 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
Client image to perform Google Cloud Vision API tasks over.
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Image content, represented as a stream of bytes.
 - 
  
    
      #source  ⇒ Google::Apis::VisionV1::ImageSource 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
External image source (Google Cloud Storage or web URL image location).
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Image 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Image.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Image
Returns a new instance of Image
      6088 6089 6090  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6088 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#content ⇒ String
Image content, represented as a stream of bytes.
Note: As with all bytes fields, protobuffers use a pure binary
representation, whereas JSON representations use base64.
Corresponds to the JSON property content
NOTE: Values are automatically base64 encoded/decoded in the client library.
      6081 6082 6083  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6081 def content @content end  | 
  
#source ⇒ Google::Apis::VisionV1::ImageSource
External image source (Google Cloud Storage or web URL image location).
Corresponds to the JSON property source
      6086 6087 6088  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6086 def source @source end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6093 6094 6095 6096  | 
    
      # File 'generated/google/apis/vision_v1/classes.rb', line 6093 def update!(**args) @content = args[:content] if args.key?(:content) @source = args[:source] if args.key?(:source) end  |