Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ShotChangeDetectionConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ShotChangeDetectionConfig
 
- 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
Config for SHOT_CHANGE_DETECTION.
Instance Attribute Summary collapse
- 
  
    
      #model  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Model to use for shot change detection. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudVideointelligenceV1ShotChangeDetectionConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudVideointelligenceV1ShotChangeDetectionConfig. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1ShotChangeDetectionConfig
Returns a new instance of GoogleCloudVideointelligenceV1ShotChangeDetectionConfig
| 376 377 378 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 376 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#model ⇒ String
Model to use for shot change detection.
Supported values: "builtin/stable" (the default if unset) and
"builtin/latest".
Corresponds to the JSON property model
| 374 375 376 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 374 def model @model end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 381 382 383 | # File 'generated/google/apis/videointelligence_v1/classes.rb', line 381 def update!(**args) @model = args[:model] if args.key?(:model) end |