Class: Aws::Rekognition::Types::Instance
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Rekognition::Types::Instance
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rekognition/types.rb
 
Overview
An instance of a label returned by Amazon Rekognition Image (DetectLabels) or by Amazon Rekognition Video (GetLabelDetection).
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bounding_box  ⇒ Types::BoundingBox 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The position of the label instance on the image.
 - 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The confidence that Amazon Rekognition has in the accuracy of the bounding box.
 - 
  
    
      #dominant_colors  ⇒ Array<Types::DominantColor> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The dominant colors found in an individual instance of a label.
 
Instance Attribute Details
#bounding_box ⇒ Types::BoundingBox
The position of the label instance on the image.
      4589 4590 4591 4592 4593 4594 4595  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 4589 class Instance < Struct.new( :bounding_box, :confidence, :dominant_colors) SENSITIVE = [] include Aws::Structure end  | 
  
#confidence ⇒ Float
The confidence that Amazon Rekognition has in the accuracy of the bounding box.
      4589 4590 4591 4592 4593 4594 4595  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 4589 class Instance < Struct.new( :bounding_box, :confidence, :dominant_colors) SENSITIVE = [] include Aws::Structure end  | 
  
#dominant_colors ⇒ Array<Types::DominantColor>
The dominant colors found in an individual instance of a label.
      4589 4590 4591 4592 4593 4594 4595  | 
    
      # File 'lib/aws-sdk-rekognition/types.rb', line 4589 class Instance < Struct.new( :bounding_box, :confidence, :dominant_colors) SENSITIVE = [] include Aws::Structure end  |