Show / Hide Table of Contents

Class TrackingType

Details of what to track.

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

Properties

DetectionModelId

Declaration
[JsonProperty(PropertyName = "detectionModelId")]
public string DetectionModelId { get; set; }
Property Value
Type Description
string

The detection model OCID.

MaxResults

Declaration
[JsonProperty(PropertyName = "maxResults")]
public int? MaxResults { get; set; }
Property Value
Type Description
int?

The maximum number of results to return.

Objects

Declaration
[Required(ErrorMessage = "Objects is required.")]
[JsonProperty(PropertyName = "objects")]
public List<string> Objects { get; set; }
Property Value
Type Description
List<string>

List of the objects to be tracked.

Remarks

Required

ShouldReturnLandmarks

Declaration
[JsonProperty(PropertyName = "shouldReturnLandmarks")]
public bool? ShouldReturnLandmarks { get; set; }
Property Value
Type Description
bool?

Whether or not return face landmarks.

TrackingModelId

Declaration
[JsonProperty(PropertyName = "trackingModelId")]
public string TrackingModelId { get; set; }
Property Value
Type Description
string

The tracking model OCID.

In this article
Back to top