Table of Contents

Class TrackingOptions<T>

Namespace
AiDotNet.ComputerVision.Tracking
Assembly
AiDotNet.dll

Options for object tracking.

public class TrackingOptions<T>

Type Parameters

T

The numeric type used for calculations.

Inheritance
TrackingOptions<T>
Inherited Members

Properties

AppearanceWeight

Weight for appearance similarity in cost matrix.

public double AppearanceWeight { get; set; }

Property Value

double

ConfidenceThreshold

Confidence threshold for detections.

public T ConfidenceThreshold { get; set; }

Property Value

T

IouThreshold

IoU threshold for detection-to-track association.

public T IouThreshold { get; set; }

Property Value

T

MaxAge

Maximum age (frames without detection) before track deletion.

public int MaxAge { get; set; }

Property Value

int

MaxCosineDistance

Maximum cosine distance for appearance matching.

public double MaxCosineDistance { get; set; }

Property Value

double

MinHits

Minimum hits before track is confirmed.

public int MinHits { get; set; }

Property Value

int

UseAppearance

Whether to use appearance features for matching.

public bool UseAppearance { get; set; }

Property Value

bool