Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelFrame
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelFrame
- 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 frame level annotation results for label detection.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Confidence that the label is accurate.
-
#time_offset ⇒ String
Time-offset, relative to the beginning of the video, corresponding to the video frame for this location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LabelFrame
constructor
A new instance of GoogleCloudVideointelligenceV1beta2LabelFrame.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LabelFrame
Returns a new instance of GoogleCloudVideointelligenceV1beta2LabelFrame
1029 1030 1031 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1029 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
1021 1022 1023 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1021 def confidence @confidence end |
#time_offset ⇒ String
Time-offset, relative to the beginning of the video, corresponding to the
video frame for this location.
Corresponds to the JSON property timeOffset
1027 1028 1029 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1027 def time_offset @time_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1034 1035 1036 1037 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1034 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @time_offset = args[:time_offset] if args.key?(:time_offset) end |