Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1LabelSegment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/videointelligence_v1p2beta1/classes.rb,
lib/google/apis/videointelligence_v1p2beta1/representations.rb,
lib/google/apis/videointelligence_v1p2beta1/representations.rb

Overview

Video segment level annotation results for label detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1LabelSegment

Returns a new instance of GoogleCloudVideointelligenceV1p2beta1LabelSegment.



4185
4186
4187
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4185

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#confidenceFloat

Confidence that the label is accurate. Range: [0, 1]. Corresponds to the JSON property confidence

Returns:

  • (Float)


4178
4179
4180
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4178

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1VideoSegment

Video segment. Corresponds to the JSON property segment



4183
4184
4185
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4183

def segment
  @segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4190
4191
4192
4193
# File 'lib/google/apis/videointelligence_v1p2beta1/classes.rb', line 4190

def update!(**args)
  @confidence = args[:confidence] if args.key?(:confidence)
  @segment = args[:segment] if args.key?(:segment)
end