Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1LabelFrame

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

Overview

Video frame level annotation results for label detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1LabelFrame

Returns a new instance of GoogleCloudVideointelligenceV1p3beta1LabelFrame.



5434
5435
5436
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5434

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)


5426
5427
5428
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5426

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)


5432
5433
5434
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5432

def time_offset
  @time_offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5439
5440
5441
5442
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5439

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