Class: Google::Apis::VideointelligenceV1beta2::GoogleCloudVideointelligenceV1beta2LabelFrame

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 frame level annotation results for label detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2LabelFrame

Returns a new instance of GoogleCloudVideointelligenceV1beta2LabelFrame.



1710
1711
1712
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1710

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)


1702
1703
1704
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1702

def confidence
  @confidence
end

#time_offsetString

Time-offset, relative to the beginning of the video, corresponding to the video frame for this location. Corresponds to the JSON property timeOffset

Returns:

  • (String)


1708
1709
1710
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1708

def time_offset
  @time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1715
1716
1717
1718
# File 'generated/google/apis/videointelligence_v1beta2/classes.rb', line 1715

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