Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2LabelSegment

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) ⇒ GoogleCloudVideointelligenceV1beta2LabelSegment

Returns a new instance of GoogleCloudVideointelligenceV1beta2LabelSegment.



2030
2031
2032
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 2030

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)


2023
2024
2025
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 2023

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1beta2VideoSegment

Video segment. Corresponds to the JSON property segment



2028
2029
2030
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 2028

def segment
  @segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2035
2036
2037
2038
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 2035

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