Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ObjectTrackingConfig
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1ObjectTrackingConfig
- 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 OBJECT_TRACKING.
Instance Attribute Summary collapse
-
#model ⇒ String
Model to use for object tracking.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1ObjectTrackingConfig
constructor
A new instance of GoogleCloudVideointelligenceV1ObjectTrackingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1ObjectTrackingConfig
Returns a new instance of GoogleCloudVideointelligenceV1ObjectTrackingConfig.
790 791 792 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 790 def initialize(**args) update!(**args) end |
Instance Attribute Details
#model ⇒ String
Model to use for object tracking. Supported values: "builtin/stable" (the
default if unset) and "builtin/latest".
Corresponds to the JSON property model
788 789 790 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 788 def model @model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
795 796 797 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 795 def update!(**args) @model = args[:model] if args.key?(:model) end |