public sealed class DetectedLandmark : IMessage<DetectedLandmark>, IEquatable<DetectedLandmark>, IDeepCloneable<DetectedLandmark>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Video Intelligence v1 API class DetectedLandmark.
A generic detected landmark represented by name in string format and a 2D location.
Implements
IMessage<DetectedLandmark>, IEquatable<DetectedLandmark>, IDeepCloneable<DetectedLandmark>, IBufferMessage, IMessageNamespace
Google.Cloud.VideoIntelligence.V1Assembly
Google.Cloud.VideoIntelligence.V1.dll
Constructors
DetectedLandmark()
public DetectedLandmark()
DetectedLandmark(DetectedLandmark)
public DetectedLandmark(DetectedLandmark other)
Parameter | |
---|---|
Name | Description |
other | DetectedLandmark |
Properties
Confidence
public float Confidence { get; set; }
The confidence score of the detected landmark. Range [0, 1].
Property Value | |
---|---|
Type | Description |
Single |
Name
public string Name { get; set; }
The name of this landmark, for example, left_hand, right_shoulder.
Property Value | |
---|---|
Type | Description |
String |
Point
public NormalizedVertex Point { get; set; }
The 2D point of the detected landmark using the normalized image coordindate system. The normalized coordinates have the range from 0 to 1.
Property Value | |
---|---|
Type | Description |
NormalizedVertex |