mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:26:31 +00:00
62623b7123
rewrite zmq to DEALER and ROUTER add GET_USER command to get CurrentUser from Python all auth is on the python side inference run and validate annotations on python
15 lines
631 B
C#
15 lines
631 B
C#
using MessagePack;
|
|
|
|
namespace Azaion.Common.DTO.Config;
|
|
|
|
[MessagePackObject]
|
|
public class AIRecognitionConfig
|
|
{
|
|
[Key("FrameRecognitionSeconds")] public double FrameRecognitionSeconds { 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; }
|
|
} |