Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1LabelSegment

Inherits:
Object
  • Object
show all
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 segment level annotation results for label detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p1beta1LabelSegment

Returns a new instance of GoogleCloudVideointelligenceV1p1beta1LabelSegment.



3174
3175
3176
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 3174

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)


3167
3168
3169
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 3167

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p1beta1VideoSegment

Video segment. Corresponds to the JSON property segment



3172
3173
3174
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 3172

def segment
  @segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3179
3180
3181
3182
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 3179

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