Class: Google::Apis::VisionV1::Result
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1::Result
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb 
Overview
Information about a product.
Instance Attribute Summary collapse
- 
  
    
      #image  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The resource name of the image from the product that is the closest match to the query.
 - 
  
    
      #product  ⇒ Google::Apis::VisionV1::Product 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A Product contains ReferenceImages.
 - 
  
    
      #score  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A confidence level on the match, ranging from 0 (no confidence) to 1 (full confidence).
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Result 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Result.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Result
Returns a new instance of Result.
      9832 9833 9834  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 9832 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#image ⇒ String
The resource name of the image from the product that is the closest match to
the query.
Corresponds to the JSON property image
      9819 9820 9821  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 9819 def image @image end  | 
  
#product ⇒ Google::Apis::VisionV1::Product
A Product contains ReferenceImages.
Corresponds to the JSON property product
      9824 9825 9826  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 9824 def product @product end  | 
  
#score ⇒ Float
A confidence level on the match, ranging from 0 (no confidence) to 1 (full
confidence).
Corresponds to the JSON property score
      9830 9831 9832  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 9830 def score @score end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      9837 9838 9839 9840 9841  | 
    
      # File 'lib/google/apis/vision_v1/classes.rb', line 9837 def update!(**args) @image = args[:image] if args.key?(:image) @product = args[:product] if args.key?(:product) @score = args[:score] if args.key?(:score) end  |