Show / Hide Table of Contents

Class VideoTrackedObject

Tracked object in a video.

Inheritance
object
VideoTrackedObject
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 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

In this article
Back to top