Class: Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1LabelSegment
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1LabelSegment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p1beta1/classes.rb,
lib/google/apis/videointelligence_v1p1beta1/representations.rb,
lib/google/apis/videointelligence_v1p1beta1/representations.rb
Overview
Video segment level annotation results for label detection.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Confidence that the label is accurate.
-
#segment ⇒ Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment
Video segment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1LabelSegment
constructor
A new instance of GoogleCloudVideointelligenceV1p1beta1LabelSegment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1LabelSegment
Returns a new instance of GoogleCloudVideointelligenceV1p1beta1LabelSegment.
2997 2998 2999 |
# File 'lib/google/apis/videointelligence_v1p1beta1/classes.rb', line 2997 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
2990 2991 2992 |
# File 'lib/google/apis/videointelligence_v1p1beta1/classes.rb', line 2990 def confidence @confidence end |
#segment ⇒ Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment
Video segment.
Corresponds to the JSON property segment
2995 2996 2997 |
# File 'lib/google/apis/videointelligence_v1p1beta1/classes.rb', line 2995 def segment @segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3002 3003 3004 3005 |
# File 'lib/google/apis/videointelligence_v1p1beta1/classes.rb', line 3002 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @segment = args[:segment] if args.key?(:segment) end |