Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelSegment
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelSegment
 
- 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
Video segment level annotation results for label detection.
Instance Attribute Summary collapse
- 
  
    
      #confidence  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Confidence that the label is accurate. 
- 
  
    
      #segment  ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Video segment. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVideointelligenceV1beta2LabelSegment 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudVideointelligenceV1beta2LabelSegment. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LabelSegment
Returns a new instance of GoogleCloudVideointelligenceV1beta2LabelSegment
| 1096 1097 1098 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1096 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#confidence ⇒ Float
Confidence that the label is accurate. Range: [0, 1].
Corresponds to the JSON property confidence
| 1089 1090 1091 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1089 def confidence @confidence end | 
#segment ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment
Video segment.
Corresponds to the JSON property segment
| 1094 1095 1096 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1094 def segment @segment end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1101 1102 1103 1104 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 1101 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @segment = args[:segment] if args.key?(:segment) end |