From 0ac00af0ad241fcd07fd4654b44f4bee3dd7626d Mon Sep 17 00:00:00 2001 From: "xhm\\HP" <1173131411@qq.com> Date: Sun, 16 Mar 2025 13:28:32 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DH.Commons/DH.Commons.csproj | 1 + DH.Commons/DetectionConfig.cs | 92 +++++++++++------------- DH.Devices.Vision/SimboVisionMLBase.cs | 12 ++-- DH.Devices.Vision/SimboVisionModel.cs | 6 +- DHSoftware/Views/AddCameraWindow.cs | 4 -- DHSoftware/Views/CorrelatedCameraEdit.cs | 1 + DHSoftware/Views/DetectControl.cs | 1 + DHSoftware/Views/DetectionLableEdit.cs | 1 + DHSoftware/Views/PreTreatEdit.cs | 1 + DHSoftware/Views/UserConfigFrm.cs | 34 ++++----- 10 files changed, 71 insertions(+), 82 deletions(-) diff --git a/DH.Commons/DH.Commons.csproj b/DH.Commons/DH.Commons.csproj index fc78210..433b8fb 100644 --- a/DH.Commons/DH.Commons.csproj +++ b/DH.Commons/DH.Commons.csproj @@ -15,6 +15,7 @@ + diff --git a/DH.Commons/DetectionConfig.cs b/DH.Commons/DetectionConfig.cs index 5611786..5afce01 100644 --- a/DH.Commons/DetectionConfig.cs +++ b/DH.Commons/DetectionConfig.cs @@ -7,6 +7,7 @@ using System.Text; using System.Drawing.Design; using AntdUI; + namespace DH.Commons.Enums { public enum MLModelType @@ -26,9 +27,7 @@ namespace DH.Commons.Enums } public class ModelLabel { -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string LabelId { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 [Category("模型标签")] @@ -40,9 +39,7 @@ namespace DH.Commons.Enums [Category("模型标签")] [DisplayName("模型标签")] [Description("模型识别的标签名称")] -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string LabelName { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 @@ -62,9 +59,7 @@ namespace DH.Commons.Enums public class MLRequest { public int ImageChannels = 3; -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public Mat mImage; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public int ResizeWidth; public int ResizeHeight; @@ -75,17 +70,11 @@ namespace DH.Commons.Enums //public int ImageResizeCount; public bool IsCLDetection; public int ProCount; -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 - public string in_node_name; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public string in_node_name; -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 - public string out_node_name; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public string out_node_name; -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 - public string in_lable_path; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public string in_lable_path; public int ResizeImageSize; public int segmentWidth; @@ -94,9 +83,8 @@ namespace DH.Commons.Enums // public List OkClassTxtList; -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 - public List LabelNames; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public List LabelNames; + @@ -130,20 +118,20 @@ namespace DH.Commons.Enums { #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string LabelBGR { get; set; }//识别到对象的标签BGR -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public int LabelNo { get; set; } // 识别到对象的标签索引 #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string LabelName { get; set; }//识别到对象的标签名称 -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public double Score { get; set; }//识别目标结果的可能性、得分 #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string LabelDisplay { get; set; }//识别到对象的 显示信息 -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public double Area { get; set; }//识别目标的区域面积 @@ -164,10 +152,10 @@ namespace DH.Commons.Enums public bool IsSuccess = false; #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string ResultMessage; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public Bitmap ResultMap; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public List ResultDetails = new List(); } public class MLInit @@ -192,8 +180,8 @@ namespace DH.Commons.Enums #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public MLInit(string modelFile, bool isGPU, int gpuId, float score_thre) -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + + { ModelFile = modelFile; IsGPU = isGPU; @@ -217,18 +205,18 @@ namespace DH.Commons.Enums { #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string Pid { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string TempPid { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + /// /// 检测工位名称 /// #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string DetectName { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + /// @@ -473,34 +461,34 @@ namespace DH.Commons.Enums return new CustomizedPoint(p1.X + p2.X, p1.Y + p2.Y); } } - public class PreTreatParam - { +// public class PreTreatParam +// { - /// - /// 参数名称 - /// - /// - [Category("预处理参数")] - [DisplayName("参数名称")] - [Description("参数名称")] -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 - public string Name { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 +// /// +// /// 参数名称 +// /// +// /// +// [Category("预处理参数")] +// [DisplayName("参数名称")] +// [Description("参数名称")] +//#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 +// public string Name { get; set; } - /// - /// 参数值 - /// - /// - [Category("预处理参数")] - [DisplayName("参数值")] - [Description("参数值")] -#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 - public string Value { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + +// /// +// /// 参数值 +// /// +// /// +// [Category("预处理参数")] +// [DisplayName("参数值")] +// [Description("参数值")] +//#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 +// public string Value { get; set; } - } + +// } public class DetectionConfig { [ReadOnly(true)] @@ -881,7 +869,7 @@ namespace DH.Commons.Enums //[TypeConverter(typeof(DetectionLabelConverter))] #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string LabelId { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + [Browsable(false)] //public string LabelName { get => GetLabelName(); } diff --git a/DH.Devices.Vision/SimboVisionMLBase.cs b/DH.Devices.Vision/SimboVisionMLBase.cs index c27c174..7e94e6e 100644 --- a/DH.Devices.Vision/SimboVisionMLBase.cs +++ b/DH.Devices.Vision/SimboVisionMLBase.cs @@ -61,7 +61,7 @@ namespace DH.Devices.Vision //} #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public List HYolo; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public class Result { @@ -69,12 +69,12 @@ namespace DH.Devices.Vision public int classId; #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string classname; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + //public double area; #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public List rect; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + } @@ -84,7 +84,7 @@ namespace DH.Devices.Vision { #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public List SegmentResult; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public class Result { @@ -92,12 +92,12 @@ namespace DH.Devices.Vision public int classId; #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string classname; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + public double area; #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public List rect; -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + } diff --git a/DH.Devices.Vision/SimboVisionModel.cs b/DH.Devices.Vision/SimboVisionModel.cs index 9427f3e..0683cef 100644 --- a/DH.Devices.Vision/SimboVisionModel.cs +++ b/DH.Devices.Vision/SimboVisionModel.cs @@ -24,18 +24,18 @@ namespace DH.Devices.Vision /// #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string DetectionId { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public string DetectionName { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + /// /// 深度学习模型 /// #pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 public SimboVisionMLBase StationMLEngine { get; set; } -#pragma warning restore CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。 + } } diff --git a/DHSoftware/Views/AddCameraWindow.cs b/DHSoftware/Views/AddCameraWindow.cs index dcfbe3e..9da0f0a 100644 --- a/DHSoftware/Views/AddCameraWindow.cs +++ b/DHSoftware/Views/AddCameraWindow.cs @@ -9,7 +9,6 @@ using System.Threading.Tasks; using System.Windows.Forms; using System.Xml.Linq; using AntdUI; -using DH.Devices.Devices; namespace DHSoftware.Views { @@ -18,14 +17,11 @@ namespace DHSoftware.Views public AddCameraWindow() { InitializeComponent(); - - btnOK.DialogResult = DialogResult.OK; btnCancel.DialogResult = DialogResult.Cancel; this.AcceptButton = btnOK; this.CancelButton = btnCancel; - stName.Items.Clear(); for(int i = 1; i <= 8; i++) { diff --git a/DHSoftware/Views/CorrelatedCameraEdit.cs b/DHSoftware/Views/CorrelatedCameraEdit.cs index cc7305c..536c431 100644 --- a/DHSoftware/Views/CorrelatedCameraEdit.cs +++ b/DHSoftware/Views/CorrelatedCameraEdit.cs @@ -3,6 +3,7 @@ using System.ComponentModel; using System.Reflection; using AntdUI; +using DH.Commons.Enums; using DH.Devices.Vision; namespace DHSoftware.Views diff --git a/DHSoftware/Views/DetectControl.cs b/DHSoftware/Views/DetectControl.cs index 4348fe7..fbc6dcb 100644 --- a/DHSoftware/Views/DetectControl.cs +++ b/DHSoftware/Views/DetectControl.cs @@ -10,6 +10,7 @@ using System.Threading.Tasks; using System.Windows.Forms; using System.Xml.Linq; using AntdUI; +using DH.Commons.Enums; using DH.Devices.Vision; namespace DHSoftware.Views diff --git a/DHSoftware/Views/DetectionLableEdit.cs b/DHSoftware/Views/DetectionLableEdit.cs index 01682fd..ead8cc7 100644 --- a/DHSoftware/Views/DetectionLableEdit.cs +++ b/DHSoftware/Views/DetectionLableEdit.cs @@ -3,6 +3,7 @@ using System.ComponentModel; using System.Reflection; using AntdUI; +using DH.Commons.Enums; using DH.Devices.Vision; using static System.Windows.Forms.AxHost; diff --git a/DHSoftware/Views/PreTreatEdit.cs b/DHSoftware/Views/PreTreatEdit.cs index 450b958..f4ecff7 100644 --- a/DHSoftware/Views/PreTreatEdit.cs +++ b/DHSoftware/Views/PreTreatEdit.cs @@ -1,5 +1,6 @@  +using DH.Commons.Enums; using DH.Devices.Vision; namespace DHSoftware.Views diff --git a/DHSoftware/Views/UserConfigFrm.cs b/DHSoftware/Views/UserConfigFrm.cs index ba477d5..5d9b3fc 100644 --- a/DHSoftware/Views/UserConfigFrm.cs +++ b/DHSoftware/Views/UserConfigFrm.cs @@ -136,23 +136,23 @@ namespace DHSoftware.Views { if (it.Text == "关联相机") { - using (var dlg = new AddCameraWindow(cameras)) - { - if (dlg.ShowDialog() == DialogResult.OK) - { - var newItem = new MenuItem(dlg.CubicleName); - newItem.IconSvg = "VideoCameraOutlined"; - //// 防止重复添加 - //if (!menu1.Items.Cast().Any(m => m.Text == newItem.Text)) - //{ - clickedItem.Sub.Add(newItem); - //} - //else - //{ - // AntdUI.Notification.warn(this, "新增失败", $"{dlg.CubicleName}已存在!", autoClose: 3, align: TAlignFrom.TR); - //} - } - } + //using (var dlg = new AddCameraWindow(cameras)) + //{ + // if (dlg.ShowDialog() == DialogResult.OK) + // { + // var newItem = new MenuItem(dlg.CubicleName); + // newItem.IconSvg = "VideoCameraOutlined"; + // //// 防止重复添加 + // //if (!menu1.Items.Cast().Any(m => m.Text == newItem.Text)) + // //{ + // clickedItem.Sub.Add(newItem); + // //} + // //else + // //{ + // // AntdUI.Notification.warn(this, "新增失败", $"{dlg.CubicleName}已存在!", autoClose: 3, align: TAlignFrom.TR); + // //} + // } + //} } }, menulist); }