public sealed class Frame : IMessage<VideoObjectTrackingPredictionResult.Types.Frame>, IEquatable<VideoObjectTrackingPredictionResult.Types.Frame>, IDeepCloneable<VideoObjectTrackingPredictionResult.Types.Frame>, IBufferMessage, IMessage
The fields xMin
, xMax
, yMin
, and yMax
refer to a bounding box,
i.e. the rectangle over the video frame pinpointing the found
AnnotationSpec. The coordinates are relative to the frame size, and the
point 0,0 is in the top left of the frame.
Implements
IMessage<VideoObjectTrackingPredictionResult.Types.Frame>, IEquatable<VideoObjectTrackingPredictionResult.Types.Frame>, IDeepCloneable<VideoObjectTrackingPredictionResult.Types.Frame>, IBufferMessage, IMessageNamespace
Google.Cloud.AIPlatform.V1.Schema.Predict.PredictionAssembly
Google.Cloud.AIPlatform.V1.dll
Constructors
Frame()
public Frame()
Frame(VideoObjectTrackingPredictionResult.Types.Frame)
public Frame(VideoObjectTrackingPredictionResult.Types.Frame other)
Name | Description |
other | VideoObjectTrackingPredictionResult.Types.Frame |
Properties
TimeOffset
public Duration TimeOffset { get; set; }
A time (frame) of a video in which the object has been detected. Expressed as a number of seconds as measured from the start of the video, with fractions up to a microsecond precision, and with "s" appended at the end.
Type | Description |
Duration |
XMax
public float? XMax { get; set; }
The rightmost coordinate of the bounding box.
Type | Description |
Nullable<Single> |
XMin
public float? XMin { get; set; }
The leftmost coordinate of the bounding box.
Type | Description |
Nullable<Single> |
YMax
public float? YMax { get; set; }
The bottommost coordinate of the bounding box.
Type | Description |
Nullable<Single> |
YMin
public float? YMin { get; set; }
The topmost coordinate of the bounding box.
Type | Description |
Nullable<Single> |