Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p1beta1LabelSegment
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p1beta1LabelSegment
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/videointelligence_v1p3beta1/classes.rb,
generated/google/apis/videointelligence_v1p3beta1/representations.rb,
generated/google/apis/videointelligence_v1p3beta1/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::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment
Video segment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1LabelSegment
constructor
A new instance of GoogleCloudVideointelligenceV1p1beta1LabelSegment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1LabelSegment
Returns a new instance of GoogleCloudVideointelligenceV1p1beta1LabelSegment
1807 1808 1809 |
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 1807 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
1800 1801 1802 |
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 1800 def confidence @confidence end |
#segment ⇒ Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p1beta1VideoSegment
Video segment.
Corresponds to the JSON property segment
1805 1806 1807 |
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 1805 def segment @segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1812 1813 1814 1815 |
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 1812 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @segment = args[:segment] if args.key?(:segment) end |