DHDHSoftware/DH.Commons/Base/DetectionConfig.cs

1447 lines
43 KiB
C#
Raw Normal View History

2025-03-07 16:29:38 +08:00
using OpenCvSharp;
using System.ComponentModel;
using System.Drawing;
using static OpenCvSharp.AgastFeatureDetector;
using System.Text.RegularExpressions;
using System.Text;
using System.Drawing.Design;
2025-03-16 13:14:05 +08:00
using AntdUI;
2025-03-16 17:32:09 +08:00
using static DH.Commons.Enums.EnumHelper;
2025-03-21 08:51:20 +08:00
using System.Text.Json.Serialization;
using DH.Commons.Enums;
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
namespace DH.Commons.Base
2025-03-07 16:29:38 +08:00
{
2025-03-21 08:51:20 +08:00
public class ModelLabel
2025-03-07 16:29:38 +08:00
{
public string LabelId { get; set; }
[Category("模型标签")]
[DisplayName("模型标签索引")]
[Description("模型识别的标签索引")]
public int LabelIndex { get; set; }
[Category("模型标签")]
[DisplayName("模型标签")]
[Description("模型识别的标签名称")]
public string LabelName { get; set; }
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
//[Category("模型配置")]
//[DisplayName("模型参数配置")]
//[Description("模型参数配置集合")]
//public ModelParamSetting ModelParamSetting { get; set; } = new ModelParamSetting();
public string GetDisplayText()
{
return $"{LabelId}-{LabelName}";
}
}
public class MLRequest
{
public int ImageChannels = 3;
public Mat mImage;
public int ResizeWidth;
public int ResizeHeight;
public float confThreshold;
public float iouThreshold;
//public int ImageResizeCount;
public bool IsCLDetection;
public int ProCount;
2025-03-21 08:51:20 +08:00
public string in_node_name;
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
public string out_node_name;
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
public string in_lable_path;
2025-03-07 16:29:38 +08:00
public int ResizeImageSize;
public int segmentWidth;
public int ImageWidth;
2025-03-21 08:51:20 +08:00
// public List<labelStringBase> OkClassTxtList;
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
public List<ModelLabel> LabelNames;
2025-03-07 16:29:38 +08:00
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
}
public enum ResultState
{
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
[Description("检测NG")]
DetectNG = -3,
//[Description("检测不足TBD")]
// ShortageTBD = -2,
[Description("检测结果TBD")]
ResultTBD = -1,
[Description("OK")]
OK = 1,
// [Description("NG")]
// NG = 2,
//统计结果
[Description("A类NG")]
A_NG = 25,
[Description("B类NG")]
B_NG = 26,
[Description("C类NG")]
C_NG = 27,
}
/// <summary>
/// 深度学习 识别结果明细 面向业务detect 面向深度学习Recongnition、Inference
/// </summary>
public class DetectionResultDetail
{
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string LabelBGR { get; set; }//识别到对象的标签BGR
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
public int LabelNo { get; set; } // 识别到对象的标签索引
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string LabelName { get; set; }//识别到对象的标签名称
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
public double Score { get; set; }//识别目标结果的可能性、得分
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string LabelDisplay { get; set; }//识别到对象的 显示信息
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
public double Area { get; set; }//识别目标的区域面积
public Rectangle Rect { get; set; }//识别目标的外接矩形
public RotatedRect MinRect { get; set; }//识别目标的最小外接矩形(带角度)
public ResultState InferenceResult { get; set; }//只是模型推理 label的结果
public double DistanceToImageCenter { get; set; } //计算矩形框到图像中心的距离
public ResultState FinalResult { get; set; }//模型推理+其他视觉、逻辑判断后 label结果
}
public class MLResult
{
public bool IsSuccess = false;
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string ResultMessage;
2025-03-16 13:28:32 +08:00
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public Bitmap ResultMap;
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
public List<DetectionResultDetail> ResultDetails = new List<DetectionResultDetail>();
}
public class MLInit
{
public string ModelFile;
public string InferenceDevice;
public int InferenceWidth;
public int InferenceHeight;
public string InputNodeName;
public int SizeModel;
public bool bReverse;//尺寸测量正反面
//目标检测Gpu
public bool IsGPU;
public int GPUId;
public float Score_thre;
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public MLInit(string modelFile, bool isGPU, int gpuId, float score_thre)
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
{
ModelFile = modelFile;
IsGPU = isGPU;
GPUId = gpuId;
Score_thre = score_thre;
}
public MLInit(string modelFile, string inputNodeName, string inferenceDevice, int inferenceWidth, int inferenceHeight)
{
ModelFile = modelFile;
InferenceDevice = inferenceDevice;
InferenceWidth = inferenceWidth;
InferenceHeight = inferenceHeight;
InputNodeName = inputNodeName;
}
}
2025-03-21 08:51:20 +08:00
public class DetectStationResult
2025-03-07 16:29:38 +08:00
{
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string Pid { get; set; }
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string TempPid { get; set; }
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
/// <summary>
/// 检测工位名称
/// </summary>
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string DetectName { get; set; }
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
/// <summary>
/// 深度学习 检测结果
/// </summary>
public List<DetectionResultDetail> DetectDetails = new List<DetectionResultDetail>();
2025-03-16 13:11:08 +08:00
public List<IShapeElement> DetectionResultShapes = new List<IShapeElement>();
2025-03-07 16:29:38 +08:00
/// <summary>
/// 工位检测结果
/// </summary>
public ResultState ResultState { get; set; } = ResultState.ResultTBD;
public double FinalResultfScore { get; set; } = 0.0;
public string ResultLabel { get; set; } = "";// 多个ng时根据label优先级设定当前检测项的label
public string ResultLabelCategoryId { get; set; } = "";// 多个ng时根据label优先级设定当前检测项的label
public int PreTreatState { get; set; }
public bool IsPreTreatDone { get; set; } = true;
public bool IsAfterTreatDone { get; set; } = true;
public bool IsMLDetectDone { get; set; } = true;
/// <summary>
/// 预处理阶段已经NG
/// </summary>
public bool IsPreTreatNG { get; set; } = false;
/// <summary>
/// 目标检测NG
/// </summary>
public bool IsObjectDetectNG { get; set; } = false;
public DateTime EndTime { get; set; }
public int StationDetectElapsed { get; set; }
public static string NormalizeAndClean(string input)
{
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8603 // 可能返回 null 引用。
2025-03-07 16:29:38 +08:00
if (input == null) return null;
2025-03-16 13:11:08 +08:00
#pragma warning restore CS8603 // 可能返回 null 引用。
2025-03-07 16:29:38 +08:00
// Step 1: 标准化字符编码为 Form C (规范组合)
string normalizedString = input.Normalize(NormalizationForm.FormC);
// Step 2: 移除所有空白字符,包括制表符和换行符
string withoutWhitespace = Regex.Replace(normalizedString, @"\s+", "");
// Step 3: 移除控制字符 (Unicode 控制字符,范围 \u0000 - \u001F 和 \u007F)
string withoutControlChars = Regex.Replace(withoutWhitespace, @"[\u0000-\u001F\u007F]+", "");
// Step 4: 移除特殊的不可见字符(如零宽度空格等)
string cleanedString = Regex.Replace(withoutControlChars, @"[\u200B\u200C\u200D\uFEFF]+", "");
return cleanedString;
}
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
}
2025-03-16 13:14:05 +08:00
public class RelatedCamera : NotifyProperty
2025-03-07 16:29:38 +08:00
{
2025-03-16 13:14:05 +08:00
private string _cameraSourceId = "";
2025-03-07 16:29:38 +08:00
[Category("关联相机")]
2025-03-16 13:14:05 +08:00
[DisplayName("相机源ID")]
[Description("关联相机的唯一标识符")]
2025-03-07 16:29:38 +08:00
//[TypeConverter(typeof(CollectionCountConvert))]
2025-03-16 13:14:05 +08:00
public string CameraSourceId
{
get { return _cameraSourceId; }
set
{
if (_cameraSourceId == value) return;
_cameraSourceId = value;
OnPropertyChanged(nameof(CameraSourceId));
}
}
2025-03-07 16:29:38 +08:00
public RelatedCamera()
{
}
2025-03-16 13:14:05 +08:00
// 可选:添加带 Selected 的构造函数
2025-03-07 16:29:38 +08:00
public RelatedCamera(string cameraSourceId)
{
CameraSourceId = cameraSourceId;
}
2025-03-16 13:11:08 +08:00
}
public class CustomizedPoint : INotifyPropertyChanged, IComparable<CustomizedPoint>
{
private double x = 0;
[Category("坐标设置")]
[Description("X坐标")]
public double X
{
get => x;
set
{
if (value != x)
{
x = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("X"));
}
}
}
private double y = 0;
[Category("坐标设置")]
[Description("Y坐标")]
public double Y
{
get => y;
set
{
if (value != y)
{
y = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Y"));
}
}
}
public CustomizedPoint() { }
public CustomizedPoint(double x, double y)
{
X = x;
Y = y;
}
//public CustomizedPoint(Point p)
//{
// X = p.X;
// Y = p.Y;
//}
public CustomizedPoint(PointF p)
{
X = p.X;
Y = p.Y;
}
public CustomizedPoint(CustomizedPoint p)
{
X = p.X;
Y = p.Y;
}
/// <summary>
/// 根据PLC的读取数值获取点位坐标
/// </summary>
/// <param name="plcValues">0X低位 1X高位 2Y低位 3Y高位</param>
//public CustomizedPoint(List<int> plcValues)
//{
// if (plcValues == null || plcValues.Count != 4)
// return;
// var list = plcValues.ParseUnsignShortListToInt();
// X = list[0];
// Y = list[1];
//}
public event PropertyChangedEventHandler PropertyChanged;
public static List<CustomizedPoint> GetPoints(List<double> Xs, List<double> Ys)
{
List<CustomizedPoint> points = new List<CustomizedPoint>();
for (int i = 0; i < Xs.Count && i < Ys.Count; i++)
{
points.Add(new CustomizedPoint(Xs[i], Ys[i]));
}
return points;
}
public static double GetDistance(CustomizedPoint p1, CustomizedPoint p2)
{
2025-03-21 08:51:20 +08:00
return Math.Sqrt(Math.Pow(p1.X - p2.X, 2) + Math.Pow(p1.Y - p2.Y, 2));
2025-03-16 13:11:08 +08:00
}
public override string ToString()
{
return GetDisplayText();
}
public virtual string GetDisplayText()
{
return string.Format("X:{0};Y:{1}", X, Y);
}
public virtual string GetCSVHead()
{
return "X,Y";
}
public virtual string GetCSVData()
{
return X.ToString("f3") + ";" + Y.ToString("f3");
}
//public static double GetCustomizedPointDistance(CustomizedPoint startPoint, CustomizedPoint endPoint)
//{
// return Math.Sqrt(Math.Pow(endPoint.X - startPoint.X, 2) + Math.Pow(endPoint.Y - startPoint.Y, 2));
//}
public CustomizedPoint OffsetClone(CustomizedPoint point)
{
return new CustomizedPoint(X + point.X, Y + point.Y);
}
public void Offset(CustomizedPoint point)
{
X += point.X;
Y += point.Y;
}
public int CompareTo(CustomizedPoint other)
{
2025-03-21 08:51:20 +08:00
return X == other.X && Y == other.Y ? 0 : 1;
2025-03-16 13:11:08 +08:00
}
public override int GetHashCode()
{
//return (int)(X * 10 + Y);
2025-03-21 08:51:20 +08:00
return new Tuple<double, double>(X, Y).GetHashCode();
2025-03-16 13:11:08 +08:00
}
public static CustomizedPoint operator -(CustomizedPoint p1, CustomizedPoint p2)
{
return new CustomizedPoint(p1.X - p2.X, p1.Y - p2.Y);
}
public static CustomizedPoint operator +(CustomizedPoint p1, CustomizedPoint p2)
{
return new CustomizedPoint(p1.X + p2.X, p1.Y + p2.Y);
}
}
2025-03-21 08:51:20 +08:00
// public class PreTreatParam
// {
2025-03-16 13:11:08 +08:00
2025-03-21 08:51:20 +08:00
// /// <summary>
// /// 参数名称
// /// </summary>
// ///
// [Category("预处理参数")]
// [DisplayName("参数名称")]
// [Description("参数名称")]
//#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
// public string Name { get; set; }
2025-03-16 13:11:08 +08:00
2025-03-21 08:51:20 +08:00
// /// <summary>
// /// 参数值
// /// </summary>
// ///
// [Category("预处理参数")]
// [DisplayName("参数值")]
// [Description("参数值")]
//#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
// public string Value { get; set; }
2025-03-16 13:11:08 +08:00
2025-03-16 13:28:32 +08:00
2025-03-21 08:51:20 +08:00
// }
public class DetectionConfig : NotifyProperty
2025-03-07 16:29:38 +08:00
{
2025-03-21 08:51:20 +08:00
#region
private string _id = Guid.NewGuid().ToString();
private string _name;
private string _cameraSourceId = "";
private List<RelatedCamera> _cameraCollects = new List<RelatedCamera>();
private bool _isEnableGPU;
private bool _isMixModel;
private bool _isPreEnabled;
private bool _isEnabled;
private bool _isAddStation = true;
private string _halconAlgorithemPath_Pre;
private AntList<PreTreatParam> _preTreatParams = new AntList<PreTreatParam>();
private AntList<PreTreatParam> _outPreTreatParams = new AntList<PreTreatParam>();
private ModelType _modelType = ModelType.;
private string _modelPath;
private int _modelWidth = 640;
private int _modelHeight = 640;
private string _modeloutNodeName = "output0";
private float _modelconfThreshold = 0.5f;
private string _in_lable_path;
private AntList<DetectionLable> _detectionLableList = new AntList<DetectionLable>();
private AntList<SizeTreatParam> _sizeTreatParamList = new AntList<SizeTreatParam>();
private CustomizedPoint _showLocation = new CustomizedPoint();
private bool _saveOKOriginal = false;
private bool _saveNGOriginal = false;
private bool _saveOKDetect = false;
private bool _saveNGDetect = false;
#endregion
#region
2025-03-07 16:29:38 +08:00
[ReadOnly(true)]
2025-03-21 08:51:20 +08:00
public string Id
{
get => _id;
set
{
if (_id == value) return;
_id = value;
OnPropertyChanged(nameof(Id));
}
}
2025-03-07 16:29:38 +08:00
[Category("检测配置")]
[DisplayName("检测配置名称")]
[Description("检测配置名称")]
2025-03-21 08:51:20 +08:00
public string Name
{
get => _name;
set
{
if (_name == value) return;
_name = value;
OnPropertyChanged(nameof(Name));
}
}
2025-03-07 16:29:38 +08:00
[Category("关联相机集合")]
[DisplayName("关联相机集合")]
[Description("关联相机描述")]
2025-03-21 08:51:20 +08:00
public List<RelatedCamera> CameraCollects
{
get => _cameraCollects;
set
{
if (_cameraCollects == value) return;
_cameraCollects = value;
OnPropertyChanged(nameof(CameraCollects));
}
}
2025-03-07 16:29:38 +08:00
[Category("启用配置")]
[DisplayName("是否启用GPU检测")]
[Description("是否启用GPU检测")]
2025-03-21 08:51:20 +08:00
public bool IsEnableGPU
{
get => _isEnableGPU;
set
{
if (_isEnableGPU == value) return;
_isEnableGPU = value;
OnPropertyChanged(nameof(IsEnableGPU));
}
}
2025-03-07 16:29:38 +08:00
[Category("启用配置")]
[DisplayName("是否混料模型")]
[Description("是否混料模型")]
2025-03-21 08:51:20 +08:00
public bool IsMixModel
{
get => _isMixModel;
set
{
if (_isMixModel == value) return;
_isMixModel = value;
OnPropertyChanged(nameof(IsMixModel));
}
}
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
[Category("启用配置")]
[DisplayName("是否启用预处理")]
[Description("是否启用预处理")]
public bool IsPreEnabled
{
get => _isPreEnabled;
set
{
if (_isPreEnabled == value) return;
_isPreEnabled = value;
OnPropertyChanged(nameof(IsPreEnabled));
}
}
2025-03-07 16:29:38 +08:00
[Category("启用配置")]
[DisplayName("是否启用该检测")]
[Description("是否启用该检测")]
2025-03-21 08:51:20 +08:00
public bool IsEnabled
{
get => _isEnabled;
set
{
if (_isEnabled == value) return;
_isEnabled = value;
OnPropertyChanged(nameof(IsEnabled));
}
}
2025-03-07 16:29:38 +08:00
[Category("启用配置")]
[DisplayName("是否加入检测工位")]
[Description("是否加入检测工位")]
2025-03-21 08:51:20 +08:00
public bool IsAddStation
{
get => _isAddStation;
set
{
if (_isAddStation == value) return;
_isAddStation = value;
OnPropertyChanged(nameof(IsAddStation));
}
}
2025-03-07 16:29:38 +08:00
2025-03-12 09:21:06 +08:00
[Category("1.预处理(视觉算子)")]
[DisplayName("预处理-算法文件路径")]
2025-03-21 08:51:20 +08:00
public string HalconAlgorithemPath_Pre
{
get => _halconAlgorithemPath_Pre;
set
{
if (_halconAlgorithemPath_Pre == value) return;
_halconAlgorithemPath_Pre = value;
OnPropertyChanged(nameof(HalconAlgorithemPath_Pre));
}
}
2025-03-12 09:21:06 +08:00
[Category("1.预处理(视觉算子)")]
[DisplayName("预处理-参数列表")]
[Description("预处理-参数列表")]
2025-03-21 08:51:20 +08:00
public AntList<PreTreatParam> PreTreatParams
{
get => _preTreatParams;
set
{
if (_preTreatParams == value) return;
_preTreatParams = value;
OnPropertyChanged(nameof(PreTreatParams));
}
}
2025-03-12 09:21:06 +08:00
[Category("1.预处理(视觉算子)")]
[DisplayName("预处理-输出参数列表")]
[Description("预处理-输出参数列表")]
2025-03-21 08:51:20 +08:00
public AntList<PreTreatParam> OUTPreTreatParams
{
get => _outPreTreatParams;
set
{
if (_outPreTreatParams == value) return;
_outPreTreatParams = value;
OnPropertyChanged(nameof(OUTPreTreatParams));
}
}
2025-03-12 09:21:06 +08:00
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型类型")]
[Description("模型类型ImageClassification-图片分类ObjectDetection目标检测Segmentation-图像分割")]
2025-03-21 08:51:20 +08:00
public ModelType ModelType
{
get => _modelType;
set
{
if (_modelType == value) return;
_modelType = value;
OnPropertyChanged(nameof(ModelType));
}
}
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型文件路径")]
2025-03-21 08:51:20 +08:00
[Description("中处理 深度学习模型文件路径")]
public string ModelPath
{
get => _modelPath;
set
{
if (_modelPath == value) return;
_modelPath = value;
OnPropertyChanged(nameof(ModelPath));
}
}
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型宽度")]
[Description("中处理-模型宽度")]
2025-03-21 08:51:20 +08:00
public int ModelWidth
{
get => _modelWidth;
set
{
if (_modelWidth == value) return;
_modelWidth = value;
OnPropertyChanged(nameof(ModelWidth));
}
}
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型高度")]
[Description("中处理-模型高度")]
2025-03-21 08:51:20 +08:00
public int ModelHeight
{
get => _modelHeight;
set
{
if (_modelHeight == value) return;
_modelHeight = value;
OnPropertyChanged(nameof(ModelHeight));
}
}
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型节点名称")]
[Description("中处理-模型节点名称")]
2025-03-21 08:51:20 +08:00
public string ModeloutNodeName
{
get => _modeloutNodeName;
set
{
if (_modeloutNodeName == value) return;
_modeloutNodeName = value;
OnPropertyChanged(nameof(ModeloutNodeName));
}
}
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型置信度")]
[Description("中处理-模型置信度")]
2025-03-21 08:51:20 +08:00
public float ModelconfThreshold
{
get => _modelconfThreshold;
set
{
if (_modelconfThreshold == value) return;
_modelconfThreshold = value;
OnPropertyChanged(nameof(ModelconfThreshold));
}
}
2025-03-07 16:29:38 +08:00
[Category("2.中检测(深度学习)")]
[DisplayName("中检测-模型标签路径")]
[Description("中处理-模型标签路径")]
2025-03-21 08:51:20 +08:00
public string In_lable_path
{
2025-03-24 19:03:30 +08:00
get
{
if (string.IsNullOrEmpty(ModelPath) || string.IsNullOrWhiteSpace(ModelPath))
{
return string.Empty;
}
string dir = Path.GetDirectoryName(ModelPath);
string file = $"{Path.GetFileNameWithoutExtension(ModelPath)}.txt";
return Path.Combine(dir, file);
}
2025-03-21 08:51:20 +08:00
set
{
if (_in_lable_path == value) return;
_in_lable_path = value;
OnPropertyChanged(nameof(In_lable_path));
}
}
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
[Category("显示配置")]
[DisplayName("显示位置")]
[Description("检测信息显示位置")]
public CustomizedPoint ShowLocation
{
get => _showLocation;
set
{
if (_showLocation == value) return;
_showLocation = value;
OnPropertyChanged(nameof(ShowLocation));
}
}
2025-03-16 13:14:05 +08:00
/// <summary>
2025-03-21 08:51:20 +08:00
/// 标签集合需确保DetectionLable也实现INotifyPropertyChanged
2025-03-16 13:14:05 +08:00
/// </summary>
2025-03-21 08:51:20 +08:00
public AntList<DetectionLable> DetectionLableList
{
get => _detectionLableList;
set
{
if (_detectionLableList == value) return;
_detectionLableList = value;
OnPropertyChanged(nameof(DetectionLableList));
}
}
public AntList<SizeTreatParam> SizeTreatParamList
{
get => _sizeTreatParamList;
set
{
if (_sizeTreatParamList == value) return;
_sizeTreatParamList = value;
OnPropertyChanged(nameof(SizeTreatParamList));
}
}
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
public bool SaveOKOriginal
2025-03-07 16:29:38 +08:00
{
2025-03-21 08:51:20 +08:00
get => _saveOKOriginal;
set
{
if (_saveOKOriginal == value) return;
_saveOKOriginal = value;
OnPropertyChanged(nameof(SaveOKOriginal));
}
}
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
public bool SaveNGOriginal
{
get => _saveNGOriginal;
set
{
if (_saveNGOriginal == value) return;
_saveNGOriginal = value;
OnPropertyChanged(nameof(SaveNGOriginal));
}
2025-03-07 16:29:38 +08:00
}
2025-03-21 08:51:20 +08:00
public bool SaveOKDetect
{
get => _saveOKDetect;
set
{
if (_saveOKDetect == value) return;
_saveOKDetect = value;
OnPropertyChanged(nameof(SaveOKDetect));
}
}
public bool SaveNGDetect
{
get => _saveNGDetect;
set
{
if (_saveNGDetect == value) return;
_saveNGDetect = value;
OnPropertyChanged(nameof(SaveNGDetect));
}
}
#endregion
2025-03-07 16:29:38 +08:00
2025-03-21 08:51:20 +08:00
#region
public DetectionConfig() { }
public DetectionConfig(
string name,
ModelType modelType,
string modelPath,
bool isEnableGPU,
string sCameraSourceId)
{
// 通过属性赋值触发通知
2025-03-07 16:29:38 +08:00
ModelPath = modelPath ?? string.Empty;
Name = name;
ModelType = modelType;
IsEnableGPU = isEnableGPU;
}
2025-03-21 08:51:20 +08:00
#endregion
2025-03-07 16:29:38 +08:00
}
2025-03-16 13:14:05 +08:00
//大改预处理类
/// <summary>
/// 预处理
/// </summary>
public class PreTreatParam : NotifyProperty
{
private bool _selected = false;
public bool Selected
{
get { return _selected; }
set
{
if (_selected == value) return;
_selected = value;
OnPropertyChanged(nameof(Selected));
}
}
private string _name;
public string Name
{
get { return _name; }
set
{
if (_name == value) return;
_name = value;
OnPropertyChanged(nameof(Name));
}
}
private string _value;
public string Value
{
get { return _value; }
set
{
if (_value == value) return;
_value = value;
OnPropertyChanged(nameof(Value));
}
}
private CellLink[] cellLinks;
2025-03-21 08:51:20 +08:00
[JsonIgnore]
2025-03-16 13:14:05 +08:00
public CellLink[] CellLinks
{
get { return cellLinks; }
set
{
if (cellLinks == value) return;
cellLinks = value;
OnPropertyChanged(nameof(CellLinks));
}
}
}
public class DetectionLable : NotifyProperty
{
private bool _selected = false;
2025-03-24 15:21:16 +08:00
2025-03-16 13:14:05 +08:00
private string _labelId;
private string _labelName;
2025-03-21 16:29:08 +08:00
private double _maxScore;
private double _minScore;
2025-03-16 13:14:05 +08:00
private double _maxArea;
private double _minArea;
private ResultState _resultState = ResultState.ResultTBD;
2025-03-21 08:51:20 +08:00
2025-03-16 13:14:05 +08:00
public bool Selected
{
get { return _selected; }
set
{
if (_selected == value) return;
_selected = value;
OnPropertyChanged(nameof(Selected));
}
}
2025-03-16 17:32:09 +08:00
2025-03-16 13:14:05 +08:00
public string LabelId
{
get { return _labelId; }
set
{
if (_labelId == value) return;
_labelId = value;
OnPropertyChanged(nameof(LabelId));
}
}
public string LabelName
{
get { return _labelName; }
set
{
if (_labelName == value) return;
_labelName = value;
OnPropertyChanged(nameof(LabelName));
}
}
2025-03-21 16:29:08 +08:00
public double MaxScore
2025-03-16 13:14:05 +08:00
{
2025-03-21 16:29:08 +08:00
get { return _maxScore; }
2025-03-16 13:14:05 +08:00
set
{
2025-03-21 16:29:08 +08:00
if (_maxScore.Equals(value)) return;
_maxScore = value;
OnPropertyChanged(nameof(MaxScore));
2025-03-16 13:14:05 +08:00
}
}
2025-03-21 16:29:08 +08:00
public double MinScore
2025-03-16 13:14:05 +08:00
{
2025-03-21 16:29:08 +08:00
get { return _minScore; }
2025-03-16 13:14:05 +08:00
set
{
2025-03-21 16:29:08 +08:00
if (_minScore.Equals(value)) return;
_minScore = value;
OnPropertyChanged(nameof(MinScore));
2025-03-16 13:14:05 +08:00
}
}
public double MaxArea
{
get { return _maxArea; }
set
{
if (_maxArea.Equals(value)) return;
_maxArea = value;
OnPropertyChanged(nameof(MaxArea));
}
}
public double MinArea
{
get { return _minArea; }
set
{
if (_minArea.Equals(value)) return;
_minArea = value;
OnPropertyChanged(nameof(MinArea));
}
}
public ResultState ResultState
{
get { return _resultState; }
set
{
if (_resultState == value) return;
_resultState = value;
OnPropertyChanged(nameof(ResultState));
}
}
private CellLink[] cellLinks;
2025-03-21 08:51:20 +08:00
[JsonIgnore]
2025-03-16 13:14:05 +08:00
public CellLink[] CellLinks
{
get { return cellLinks; }
set
{
if (cellLinks == value) return;
cellLinks = value;
OnPropertyChanged(nameof(CellLinks));
}
}
}
2025-03-16 17:32:09 +08:00
public class SizeTreatParam : NotifyProperty
{
private bool _selected = false;
private bool _isEnable;
private string _preName;
private int _prePix;
private SizeEnum _preType;
private string _resultShow;
private string _outResultShow;
private string _prePath;
public bool Selected
{
get { return _selected; }
set
{
if (_selected == value) return;
_selected = value;
OnPropertyChanged(nameof(Selected));
}
}
public bool IsEnable
{
get { return _isEnable; }
set
{
if (_isEnable == value) return;
_isEnable = value;
OnPropertyChanged(nameof(IsEnable));
}
}
public string PreName
{
get { return _preName; }
set
{
if (_preName == value) return;
_preName = value;
OnPropertyChanged(nameof(PreName));
}
}
public SizeEnum PreType
{
get { return _preType; }
set
{
if (_preType == value) return;
_preType = value;
OnPropertyChanged(nameof(PreType));
}
}
2025-03-16 13:14:05 +08:00
2025-03-16 17:32:09 +08:00
public int PrePix
{
get { return _prePix; }
set
{
if (_prePix.Equals(value)) return;
_prePix = value;
OnPropertyChanged(nameof(PrePix));
}
}
public string ResultShow
{
get { return _resultShow; }
set
{
if (_resultShow == value) return;
_resultShow = value;
OnPropertyChanged(nameof(ResultShow));
}
2025-03-21 08:51:20 +08:00
2025-03-16 17:32:09 +08:00
}
public string OutResultShow
{
get { return _outResultShow; }
set
{
if (_outResultShow == value) return;
_outResultShow = value;
OnPropertyChanged(nameof(OutResultShow));
}
}
public string PrePath
{
get { return _prePath; }
set
{
if (_prePath.Equals(value)) return;
_prePath = value;
OnPropertyChanged(nameof(PrePath));
}
}
2025-03-21 08:51:20 +08:00
2025-03-16 17:32:09 +08:00
private CellLink[] cellLinks;
2025-03-21 08:51:20 +08:00
[JsonIgnore]
2025-03-16 17:32:09 +08:00
public CellLink[] CellLinks
{
get { return cellLinks; }
set
{
if (cellLinks == value) return;
cellLinks = value;
OnPropertyChanged(nameof(CellLinks));
}
}
}
2025-03-07 16:29:38 +08:00
/// <summary>
/// 识别目标定义 class分类信息 Detection Segmentation要识别的对象
/// </summary>
public class RecongnitionLabel //: IComplexDisplay
{
[Category("检测标签定义")]
[Description("检测标签编码")]
[ReadOnly(true)]
public string Id { get; set; } = Guid.NewGuid().ToString();
[Category("检测标签定义")]
[DisplayName("检测标签名称")]
[Description("检测标签名称")]
public string LabelName { get; set; } = "";
[Category("检测标签定义")]
[DisplayName("检测标签描述")]
[Description("检测标签描述,中文描述")]
public string LabelDescription { get; set; } = "";
[Category("检测标签定义")]
[DisplayName("检测标签分类")]
[Description("检测标签分类id")]
//[TypeConverter(typeof(LabelCategoryConverter))]
public string LabelCategory { get; set; } = "";
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
}
/// <summary>
/// 检测项识别对象
/// </summary>
public class DetectConfigLabel //: IComplexDisplay
{
[Category("检测项标签")]
[DisplayName("检测项标签")]
[Description("检测标签Id")]
//[TypeConverter(typeof(DetectionLabelConverter))]
2025-03-16 13:11:08 +08:00
#pragma warning disable CS8618 // 在退出构造函数时,不可为 null 的字段必须包含非 null 值。请考虑声明为可以为 null。
2025-03-07 16:29:38 +08:00
public string LabelId { get; set; }
2025-03-16 13:28:32 +08:00
2025-03-07 16:29:38 +08:00
[Browsable(false)]
//public string LabelName { get => GetLabelName(); }
[Category("检测项标签")]
[DisplayName("检测标签优先级")]
[Description("检测标签优先级,值越小,优先级越高")]
public int LabelPriority { get; set; } = 0;
//[Category("检测项标签")]
//[DisplayName("标签BGR值")]
//[Description("检测标签BGR值例如0,128,0")]
//public string LabelBGR { get; set; }
//[Category("模型配置")]
//[DisplayName("模型参数配置")]
//[Description("模型参数配置集合")]
//[TypeConverter(typeof(ComplexObjectConvert))]
//[Editor(typeof(PropertyObjectEditor), typeof(UITypeEditor))]
//public ModelParamSetting ModelParamSetting { get; set; } = new ModelParamSetting();
//public string GetDisplayText()
//{
// string dName = "";
// if (!string.IsNullOrWhiteSpace(LabelId))
// {
// using (var scope = GlobalVar.Container.BeginLifetimeScope())
// {
// IProcessConfig config = scope.Resolve<IProcessConfig>();
// var mlBase = config.DeviceConfigs.FirstOrDefault(c => c is VisionEngineInitialConfigBase) as VisionEngineInitialConfigBase;
// if (mlBase != null)
// {
// var targetLabel = mlBase.RecongnitionLabelList.FirstOrDefault(u => u.Id == LabelId);
// if (targetLabel != null)
// {
// dName = targetLabel.GetDisplayText();
// }
// }
// }
// }
// return dName;
//}
//public string GetLabelName()
//{
// var name = "";
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
// var mlBase = iConfig.DeviceConfigs.FirstOrDefault(c => c is VisionEngineInitialConfigBase) as VisionEngineInitialConfigBase;
// if (mlBase != null)
// {
// var label = mlBase.RecongnitionLabelList.FirstOrDefault(u => u.Id == LabelId);
// if (label != null)
// {
// name = label.LabelName;
// }
// }
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
// return name;
//}
}
/// <summary>
/// 识别对象定义分类信息 A类B类
/// </summary>
public class RecongnitionLabelCategory //: IComplexDisplay
{
[Category("检测标签分类")]
[Description("检测标签分类")]
[ReadOnly(true)]
public string Id { get; set; } = Guid.NewGuid().ToString();
[Category("检测标签分类")]
[DisplayName("检测标签分类名称")]
[Description("检测标签分类名称")]
public string CategoryName { get; set; } = "A-NG";
[Category("检测标签分类")]
[DisplayName("检测标签分类优先级")]
[Description("检测标签分类优先级,值越小,优先级越高")]
public int CategoryPriority { get; set; } = 0;
public string GetDisplayText()
{
return CategoryPriority + ":" + CategoryName;
}
}
/// <summary>
/// 检测过滤
/// </summary>
public class DetectionFilter ///: IComplexDisplay
{
[Category("过滤器基础信息")]
[DisplayName("检测标签")]
[Description("检测标签信息")]
//[TypeConverter(typeof(DetectionLabelConverter))]
2025-03-16 13:11:08 +08:00
2025-03-07 16:29:38 +08:00
public string LabelId { get; set; }
2025-03-16 13:11:08 +08:00
2025-03-07 16:29:38 +08:00
public string LabelName { get; set; }
2025-03-16 13:11:08 +08:00
2025-03-07 16:29:38 +08:00
[Category("过滤器基础信息")]
[DisplayName("是否启用过滤器")]
[Description("是否启用过滤器")]
public bool IsEnabled { get; set; }
[Category("过滤器判定信息")]
[DisplayName("判定结果")]
[Description("过滤器默认判定结果")]
public ResultState ResultState { get; set; } = ResultState.ResultTBD;
[Category("过滤条件")]
[DisplayName("过滤条件集合")]
[Description("过滤条件集合,集合之间为“且”关系")]
//[TypeConverter(typeof(CollectionCountConvert))]
2025-03-21 08:51:20 +08:00
// [Editor(typeof(ComplexCollectionEditor<FilterConditions>), typeof(UITypeEditor))]
2025-03-07 16:29:38 +08:00
public List<FilterConditions> FilterConditionsCollection { get; set; } = new List<FilterConditions>();
2025-03-21 08:51:20 +08:00
2025-03-07 16:29:38 +08:00
public bool FilterOperation(DetectionResultDetail recongnitionResult)
{
return FilterConditionsCollection.All(u =>
{
return u.FilterConditionCollection.Any(c =>
{
double compareValue = 0;
switch (c.FilterPropperty)
{
case DetectionFilterProperty.Width:
compareValue = recongnitionResult.Rect.Width;
break;
case DetectionFilterProperty.Height:
compareValue = recongnitionResult.Rect.Height;
break;
case DetectionFilterProperty.Area:
compareValue = recongnitionResult.Area;
break;
case DetectionFilterProperty.Score:
compareValue = recongnitionResult.Score;
break;
//case RecongnitionTargetFilterProperty.Uncertainty:
// compareValue = 0;
// //defect.Uncertainty;
// break;
}
return compareValue >= c.MinValue && compareValue <= c.MaxValue;
});
});
}
}
public class FilterConditions //: IComplexDisplay
{
[Category("过滤条件")]
[DisplayName("过滤条件集合")]
[Description("过滤条件集合,集合之间为“或”关系")]
//[TypeConverter(typeof(CollectionCountConvert))]
//[Editor(typeof(ComplexCollectionEditor<FilterCondition>), typeof(UITypeEditor))]
public List<FilterCondition> FilterConditionCollection { get; set; } = new List<FilterCondition>();
//public string GetDisplayText()
//{
// if (FilterConditionCollection.Count == 0)
// {
// return "空";
// }
// else
// {
// var desc = string.Join(" OR ", FilterConditionCollection.Select(u => u.GetDisplayText()));
// if (FilterConditionCollection.Count > 1)
// {
// desc = $"({desc})";
// }
// return desc;
// }
//}
}
public class FilterCondition //: IComplexDisplay
{
[Category("识别目标属性")]
[DisplayName("过滤属性")]
[Description("识别目标过滤针对的属性")]
//[TypeConverter(typeof(EnumDescriptionConverter<DetectionFilterProperty>))]
public DetectionFilterProperty FilterPropperty { get; set; } = DetectionFilterProperty.Width;
[Category("过滤值")]
[DisplayName("最小值")]
[Description("最小值")]
public double MinValue { get; set; } = 1;
[Category("过滤值")]
[DisplayName("最大值")]
[Description("最大值")]
public double MaxValue { get; set; } = 99999999;
//public string GetDisplayText()
//{
// return $"{FilterPropperty.GetEnumDescription()}:{MinValue}-{MaxValue}";
//}
}
public enum DetectionFilterProperty
{
[Description("宽度")]
Width = 1,
[Description("高度")]
Height = 2,
[Description("面积")]
Area = 3,
[Description("得分")]
Score = 4,
//[Description("不确定性")]
//Uncertainty = 5,
}
}