Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1DetectedLandmark
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1DetectedLandmark
- 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
A generic detected landmark represented by name in string format and a 2D location.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
The confidence score of the detected landmark.
-
#name ⇒ String
The name of this landmark, for example, left_hand, right_shoulder.
-
#point ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1NormalizedVertex
A vertex represents a 2D point in the image.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1DetectedLandmark
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1DetectedLandmark.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1DetectedLandmark
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1DetectedLandmark.
4692 4693 4694 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 4692 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
The confidence score of the detected landmark. Range [0, 1].
Corresponds to the JSON property confidence
4678 4679 4680 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 4678 def confidence @confidence end |
#name ⇒ String
The name of this landmark, for example, left_hand, right_shoulder.
Corresponds to the JSON property name
4683 4684 4685 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 4683 def name @name end |
#point ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1NormalizedVertex
A vertex represents a 2D point in the image.
NOTE: the normalized vertex coordinates are relative to the original image
and range from 0 to 1.
Corresponds to the JSON property point
4690 4691 4692 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 4690 def point @point end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4697 4698 4699 4700 4701 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 4697 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @name = args[:name] if args.key?(:name) @point = args[:point] if args.key?(:point) end |