From fb1ae0bb08315c953a513da0f9dd0409e03b210d Mon Sep 17 00:00:00 2001 From: "xhm\\HP" <1173131411@qq.com> Date: Mon, 24 Mar 2025 19:20:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DH.Commons/Helper/ConfigHelper.cs | 39 +++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/DH.Commons/Helper/ConfigHelper.cs b/DH.Commons/Helper/ConfigHelper.cs index d9e93ca..8bb6248 100644 --- a/DH.Commons/Helper/ConfigHelper.cs +++ b/DH.Commons/Helper/ConfigHelper.cs @@ -1,7 +1,9 @@ using System; +using System.Diagnostics; using System.IO; using System.Text.Json; using System.Text.Json.Serialization; +using AntdUI; using DH.Commons.Base; using DH.Commons.Models; @@ -88,6 +90,11 @@ namespace DH.Commons.Helper Directory.CreateDirectory(CurrentBackupDir); File.Copy(CurrentConfigPath, backupPath); } + //重置标签文件路径和内容 + ConfigModel.DetectionList.ForEach(config => + { + GenerateLabelFile(config); + }); // 序列化当前配置 var json = JsonSerializer.Serialize(new @@ -100,7 +107,39 @@ namespace DH.Commons.Helper // 写入新配置 File.WriteAllText(CurrentConfigPath, json); } + private static void GenerateLabelFile(DetectionConfig config) + { + try + { + if (config.DetectionLableList == null || string.IsNullOrEmpty(config.In_lable_path)) + return; + // 确保目录存在 + var directory = Path.GetDirectoryName(config.In_lable_path); + if (!string.IsNullOrEmpty(directory) && !Directory.Exists(directory)) + { + Directory.CreateDirectory(directory); + } + + // 写入文件内容 + using (var writer = new StreamWriter(config.In_lable_path, false)) + { + foreach (var label in config.DetectionLableList) + { + // 根据实际需求格式化输出 + writer.WriteLine(label.LabelName.ToString()); // 假设DetectionLable重写了ToString() + + // 或者明确指定格式: + // writer.WriteLine($"{label.Id},{label.Name},{label.Confidence}"); + } + } + } + catch (Exception ex) + { + Debug.WriteLine($"生成标签文件失败: {ex.Message}"); + // 可以考虑记录更详细的日志 + } + } /// /// 加载当前方案配置 ///