Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1LabelFrame
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1LabelFrame
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p3beta1/classes.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb,
lib/google/apis/videointelligence_v1p3beta1/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) ⇒ GoogleCloudVideointelligenceV1p3beta1LabelFrame
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1LabelFrame.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1LabelFrame
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1LabelFrame.
5228 5229 5230 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5228 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
5220 5221 5222 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5220 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
5226 5227 5228 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5226 def time_offset @time_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5233 5234 5235 5236 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5233 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @time_offset = args[:time_offset] if args.key?(:time_offset) end |