Class: Google::Apis::VisionV1p1beta1::LocalizedObjectAnnotation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::VisionV1p1beta1::LocalizedObjectAnnotation
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/vision_v1p1beta1/classes.rb,
generated/google/apis/vision_v1p1beta1/representations.rb,
generated/google/apis/vision_v1p1beta1/representations.rb 
Overview
Set of detected objects with bounding boxes.
Instance Attribute Summary collapse
- 
  
    
      #bounding_poly  ⇒ Google::Apis::VisionV1p1beta1::BoundingPoly 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A bounding polygon for the detected image annotation.
 - 
  
    
      #language_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The BCP-47 language code, such as "en-US" or "sr-Latn".
 - 
  
    
      #mid  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Object ID that should align with EntityAnnotation mid.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Object name, expressed in its
language_codelanguage. - 
  
    
      #score  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Score of the result.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LocalizedObjectAnnotation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of LocalizedObjectAnnotation.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LocalizedObjectAnnotation
Returns a new instance of LocalizedObjectAnnotation
      6365 6366 6367  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6365 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#bounding_poly ⇒ Google::Apis::VisionV1p1beta1::BoundingPoly
A bounding polygon for the detected image annotation.
Corresponds to the JSON property boundingPoly
      6341 6342 6343  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6341 def bounding_poly @bounding_poly end  | 
  
#language_code ⇒ String
The BCP-47 language code, such as "en-US" or "sr-Latn". For more
information, see
http://www.unicode.org/reports/tr35/#Unicode_locale_identifier.
Corresponds to the JSON property languageCode
      6348 6349 6350  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6348 def language_code @language_code end  | 
  
#mid ⇒ String
Object ID that should align with EntityAnnotation mid.
Corresponds to the JSON property mid
      6353 6354 6355  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6353 def mid @mid end  | 
  
#name ⇒ String
Object name, expressed in its language_code language.
Corresponds to the JSON property name
      6358 6359 6360  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6358 def name @name end  | 
  
#score ⇒ Float
Score of the result. Range [0, 1].
Corresponds to the JSON property score
      6363 6364 6365  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6363 def score @score end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6370 6371 6372 6373 6374 6375 6376  | 
    
      # File 'generated/google/apis/vision_v1p1beta1/classes.rb', line 6370 def update!(**args) @bounding_poly = args[:bounding_poly] if args.key?(:bounding_poly) @language_code = args[:language_code] if args.key?(:language_code) @mid = args[:mid] if args.key?(:mid) @name = args[:name] if args.key?(:name) @score = args[:score] if args.key?(:score) end  |