Class TrackingOptions<T>
- Namespace
- AiDotNet.ComputerVision.Tracking
- Assembly
- AiDotNet.dll
Options for object tracking.
public class TrackingOptions<T>
Type Parameters
TThe 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
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
MaxCosineDistance
Maximum cosine distance for appearance matching.
public double MaxCosineDistance { get; set; }
Property Value
MinHits
Minimum hits before track is confirmed.
public int MinHits { get; set; }
Property Value
UseAppearance
Whether to use appearance features for matching.
public bool UseAppearance { get; set; }