mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:06:30 +00:00
move python inference to Azaion.Inference folder
This commit is contained in:
@@ -5,11 +5,13 @@ namespace Azaion.Common.DTO.Config;
|
||||
[MessagePackObject]
|
||||
public class AIRecognitionConfig
|
||||
{
|
||||
[Key("FrameRecognitionSeconds")] public double FrameRecognitionSeconds { get; set; }
|
||||
[Key(nameof(FramePeriodRecognition))] public int FramePeriodRecognition { get; set; }
|
||||
[Key(nameof(FrameRecognitionSeconds))] public double FrameRecognitionSeconds { get; set; }
|
||||
[Key(nameof(ProbabilityThreshold))] public double ProbabilityThreshold { get; set; }
|
||||
|
||||
[Key("TrackingDistanceConfidence")] public double TrackingDistanceConfidence { get; set; }
|
||||
[Key("TrackingProbabilityIncrease")] public double TrackingProbabilityIncrease { get; set; }
|
||||
[Key("TrackingIntersectionThreshold")] public double TrackingIntersectionThreshold { get; set; }
|
||||
[Key("FramePeriodRecognition")] public int FramePeriodRecognition { get; set; }
|
||||
[Key("Data")] public byte[] Data { get; set; }
|
||||
[Key(nameof(TrackingDistanceConfidence))] public double TrackingDistanceConfidence { get; set; }
|
||||
[Key(nameof(TrackingProbabilityIncrease))] public double TrackingProbabilityIncrease { get; set; }
|
||||
[Key(nameof(TrackingIntersectionThreshold))] public double TrackingIntersectionThreshold { get; set; }
|
||||
|
||||
[Key(nameof(Data))] public byte[] Data { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user