Class VideoTrackedObject
Tracked object in a video.
Inherited Members
Namespace: Oci.AivisionService.Models
Assembly: OCI.DotNetSDK.Aivision.dll
Syntax
public class VideoTrackedObject
Properties
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the object category label. |
Remarks
Required
ObjectId
Declaration
[Required(ErrorMessage = "ObjectId is required.")]
[JsonProperty(PropertyName = "objectId")]
public int? ObjectId { get; set; }
Property Value
Type | Description |
---|---|
int? | Unique identifier for the object. |
Remarks
Required
Properties
Declaration
[JsonProperty(PropertyName = "properties")]
public VideoTrackedObjectProperties Properties { get; set; }
Property Value
Type | Description |
---|---|
VideoTrackedObjectProperties |
Segments
Declaration
[Required(ErrorMessage = "Segments is required.")]
[JsonProperty(PropertyName = "segments")]
public List<VideoTrackedObjectSegment> Segments { get; set; }
Property Value
Type | Description |
---|---|
List<VideoTrackedObjectSegment> | Segments for the tracked object. |
Remarks
Required