Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2LabelSegment

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

Overview

Video segment level annotation results for label detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LabelSegment

Returns a new instance of GoogleCloudVideointelligenceV1beta2LabelSegment.



1187
1188
1189
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1187

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)


1180
1181
1182
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1180

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2VideoSegment

Video segment. Corresponds to the JSON property segment



1185
1186
1187
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1185

def segment
  @segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1192
1193
1194
1195
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1192

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