Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2ShotChangeDetectionConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/videointelligence_v1beta2/classes.rb,
generated/google/apis/videointelligence_v1beta2/representations.rb,
generated/google/apis/videointelligence_v1beta2/representations.rb

Overview

Config for SHOT_CHANGE_DETECTION.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2ShotChangeDetectionConfig

Returns a new instance of GoogleCloudVideointelligenceV1beta2ShotChangeDetectionConfig



886
887
888
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 886

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#modelString

Model to use for shot change detection. Supported values: "builtin/stable" (the default if unset) and "builtin/latest". Corresponds to the JSON property model

Returns:

  • (String)


884
885
886
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 884

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



891
892
893
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 891

def update!(**args)
  @model = args[:model] if args.key?(:model)
end