Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelAnnotation
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelAnnotation
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/videointelligence_v1/classes.rb,
 generated/google/apis/videointelligence_v1/representations.rb,
 generated/google/apis/videointelligence_v1/representations.rb
Overview
Label annotation.
Instance Attribute Summary collapse
- 
  
    
      #category_entities  ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2Entity> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Common categories for the detected entity. 
- 
  
    
      #entity  ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2Entity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Detected entity from video analysis. 
- 
  
    
      #frames  ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelFrame> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    All video frames where a label was detected. 
- 
  
    
      #segments  ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelSegment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    All video segments where a label was detected. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVideointelligenceV1beta2LabelAnnotation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudVideointelligenceV1beta2LabelAnnotation. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LabelAnnotation
Returns a new instance of GoogleCloudVideointelligenceV1beta2LabelAnnotation
| 1043 1044 1045 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1043 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#category_entities ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2Entity>
Common categories for the detected entity.
E.g. when the label is Terrier the category is likely dog. And in some
cases there might be more than one categories e.g. Terrier could also be
a pet.
Corresponds to the JSON property categoryEntities
| 1026 1027 1028 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1026 def category_entities @category_entities end | 
#entity ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2Entity
Detected entity from video analysis.
Corresponds to the JSON property entity
| 1031 1032 1033 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1031 def entity @entity end | 
#frames ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelFrame>
All video frames where a label was detected.
Corresponds to the JSON property frames
| 1036 1037 1038 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1036 def frames @frames end | 
#segments ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelSegment>
All video segments where a label was detected.
Corresponds to the JSON property segments
| 1041 1042 1043 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1041 def segments @segments end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1048 1049 1050 1051 1052 1053 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1048 def update!(**args) @category_entities = args[:category_entities] if args.key?(:category_entities) @entity = args[:entity] if args.key?(:entity) @frames = args[:frames] if args.key?(:frames) @segments = args[:segments] if args.key?(:segments) end |