mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 22:16:30 +00:00
10 lines
362 B
C#
10 lines
362 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; }
|
|
public int FramePeriodRecognition { get; set; }
|
|
} |