From 5ef81fab22341c0eee34927a50a264c940929da9 Mon Sep 17 00:00:00 2001 From: Oleksandr Bezdieniezhnykh Date: Tue, 2 Sep 2025 14:00:47 +0300 Subject: [PATCH] fix loader bug with _CACHED_HW_INFO put tile size to name and set it dynamically for AI recognition --- Azaion.Common/DTO/Config/AIRecognitionConfig.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Azaion.Common/DTO/Config/AIRecognitionConfig.cs b/Azaion.Common/DTO/Config/AIRecognitionConfig.cs index c3eff14..0b14fb9 100644 --- a/Azaion.Common/DTO/Config/AIRecognitionConfig.cs +++ b/Azaion.Common/DTO/Config/AIRecognitionConfig.cs @@ -12,9 +12,11 @@ public class AIRecognitionConfig [Key("t_dc")] public double TrackingDistanceConfidence { get; set; } [Key("t_pi")] public double TrackingProbabilityIncrease { get; set; } [Key("t_it")] public double TrackingIntersectionThreshold { get; set; } - [Key("ov_p")] public double BigImageTileOverlapPercent { get; set; } [Key("d")] public byte[] Data { get; set; } = null!; [Key("p")] public List Paths { get; set; } = null!; - [Key("m_bs")] public int ModelBatchSize { get; set; } = 2; + [Key("m_bs")] public int ModelBatchSize { get; set; } = 4; + + [Key("ov_p")] public double BigImageTileOverlapPercent { get; set; } + [Key("tile_size")] public int TileSize { get; set; } } \ No newline at end of file