Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1LabelSegment

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

Returns a new instance of GoogleCloudVideointelligenceV1p2beta1LabelSegment



2074
2075
2076
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2074

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)


2067
2068
2069
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2067

def confidence
  @confidence
end

#segmentGoogle::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1p2beta1VideoSegment

Video segment. Corresponds to the JSON property segment



2072
2073
2074
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2072

def segment
  @segment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2079
2080
2081
2082
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 2079

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