Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2TimestampedObject
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2TimestampedObject
- 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
For tracking related features. An object at time_offset with attributes, and located with normalized_bounding_box.
Instance Attribute Summary collapse
-
#attributes ⇒ Array<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2DetectedAttribute>
Optional.
-
#landmarks ⇒ Array<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2DetectedLandmark>
Optional.
-
#normalized_bounding_box ⇒ Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
Normalized bounding box.
-
#time_offset ⇒ String
Time-offset, relative to the beginning of the video, corresponding to the video frame for this object.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2TimestampedObject
constructor
A new instance of GoogleCloudVideointelligenceV1beta2TimestampedObject.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2TimestampedObject
Returns a new instance of GoogleCloudVideointelligenceV1beta2TimestampedObject.
1991 1992 1993 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1991 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attributes ⇒ Array<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2DetectedAttribute>
Optional. The attributes of the object in the bounding box.
Corresponds to the JSON property attributes
1972 1973 1974 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1972 def attributes @attributes end |
#landmarks ⇒ Array<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2DetectedLandmark>
Optional. The detected landmarks.
Corresponds to the JSON property landmarks
1977 1978 1979 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1977 def landmarks @landmarks end |
#normalized_bounding_box ⇒ Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2NormalizedBoundingBox
Normalized bounding box. The normalized vertex coordinates are relative to the
original image. Range: [0, 1].
Corresponds to the JSON property normalizedBoundingBox
1983 1984 1985 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1983 def normalized_bounding_box @normalized_bounding_box end |
#time_offset ⇒ String
Time-offset, relative to the beginning of the video, corresponding to the
video frame for this object.
Corresponds to the JSON property timeOffset
1989 1990 1991 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1989 def time_offset @time_offset end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1996 1997 1998 1999 2000 2001 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1996 def update!(**args) @attributes = args[:attributes] if args.key?(:attributes) @landmarks = args[:landmarks] if args.key?(:landmarks) @normalized_bounding_box = args[:normalized_bounding_box] if args.key?(:normalized_bounding_box) @time_offset = args[:time_offset] if args.key?(:time_offset) end |