Show / Hide Table of Contents

Class VideoTrackingFrame

A frame capturing a tracked object.

Inheritance
object
VideoTrackingFrame
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class VideoTrackingFrame

Properties

BoundingPolygon

Declaration
[Required(ErrorMessage = "BoundingPolygon is required.")]
[JsonProperty(PropertyName = "boundingPolygon")]
public BoundingPolygon BoundingPolygon { get; set; }
Property Value
Type Description
BoundingPolygon
Remarks

Required

Confidence

Declaration
[Required(ErrorMessage = "Confidence is required.")]
[JsonProperty(PropertyName = "confidence")]
public float? Confidence { get; set; }
Property Value
Type Description
float?

The confidence score, between 0 and 1.

Remarks

Required

Properties

Declaration
[JsonProperty(PropertyName = "properties")]
public List<ObjectProperty> Properties { get; set; }
Property Value
Type Description
List<ObjectProperty>

Properties associated with the tracked object in the frame.

TimeOffsetMs

Declaration
[Required(ErrorMessage = "TimeOffsetMs is required.")]
[JsonProperty(PropertyName = "timeOffsetMs")]
public int? TimeOffsetMs { get; set; }
Property Value
Type Description
int?

Time offset(Milliseconds) of the frame.

Remarks

Required

In this article
Back to top