Class: Google::Apis::VisionV1p2beta1::ImageProperties
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1p2beta1::ImageProperties
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/vision_v1p2beta1/classes.rb,
lib/google/apis/vision_v1p2beta1/representations.rb,
lib/google/apis/vision_v1p2beta1/representations.rb 
Overview
Stores image properties, such as dominant colors.
Instance Attribute Summary collapse
- 
  
    
      #dominant_colors  ⇒ Google::Apis::VisionV1p2beta1::DominantColorsAnnotation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Set of dominant colors and their corresponding scores.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ImageProperties 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ImageProperties.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ImageProperties
Returns a new instance of ImageProperties.
      8780 8781 8782  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 8780 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#dominant_colors ⇒ Google::Apis::VisionV1p2beta1::DominantColorsAnnotation
Set of dominant colors and their corresponding scores.
Corresponds to the JSON property dominantColors
      8778 8779 8780  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 8778 def dominant_colors @dominant_colors end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      8785 8786 8787  | 
    
      # File 'lib/google/apis/vision_v1p2beta1/classes.rb', line 8785 def update!(**args) @dominant_colors = args[:dominant_colors] if args.key?(:dominant_colors) end  |