mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:26:31 +00:00
9 lines
310 B
C#
9 lines
310 B
C#
namespace Azaion.Common.DTO.Config;
|
|
|
|
public class AIRecognitionConfig
|
|
{
|
|
public double FrameRecognitionSeconds { get; set; }
|
|
public double TrackingDistanceConfidence { get; set; }
|
|
public double TrackingProbabilityIncrease { get; set; }
|
|
public double TrackingIntersectionThreshold { get; set; }
|
|
} |