DHDHSoftware/DHSoftware/MainWindow.cs

1190 lines
43 KiB
C#
Raw Normal View History

2025-03-07 09:06:46 +08:00
using AntdUI;
using AntdUI.Svg;
2025-03-21 08:51:20 +08:00
using DH.Commons.Base;
2025-03-12 09:21:06 +08:00
using DH.Commons.Enums;
2025-03-21 08:51:20 +08:00
using DH.Commons.Helper;
using DH.Commons.Models;
2025-03-07 09:06:46 +08:00
using DH.Devices.Camera;
2025-03-12 09:21:06 +08:00
using DH.Devices.Motion;
2025-03-07 09:06:46 +08:00
using DH.Devices.PLC;
using DH.Devices.Vision;
using DHSoftware.Languages;
using DHSoftware.Models;
using DHSoftware.Utils;
2025-03-13 18:54:05 +08:00
using DHSoftware.Views;
2025-03-07 09:06:46 +08:00
using DVPCameraType;
2025-03-12 09:21:06 +08:00
using HalconDotNet;
2025-03-07 09:06:46 +08:00
using Microsoft.Win32;
using OpenCvSharp;
using System;
using System.CodeDom;
using System.Collections.Concurrent;
using System.Collections.Generic;
2025-03-07 16:29:38 +08:00
using System.Diagnostics;
2025-03-07 09:06:46 +08:00
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
2025-03-10 17:18:45 +08:00
using System.Text;
using System.Threading;
2025-03-07 09:06:46 +08:00
using System.Threading.Tasks;
using System.Windows.Forms;
2025-03-16 13:11:08 +08:00
using XKRS.UI.Device.Winform;
2025-03-07 09:06:46 +08:00
using static AntdUI.Math3D;
using Camera = DHSoftware.Models.Camera;
namespace DHSoftware
{
public partial class MainWindow : AntdUI.Window
{
private UserControl currControl;
private bool isUpdatingTabs = false;//用于阻止Tabs更新
private bool isLight = true;
private int testCounter = 1;
Dictionary<string, List<string>> _cameraRelatedDetectionDict = null;
2025-03-24 15:20:33 +08:00
private string _loginName;
public string LoginName
{
get { return _loginName; }
set
{
_loginName = value;
UpdateLabel();
}
}
private bool _ShowConfig;
public bool ShowConfig
{
get { return _ShowConfig; }
set
{
_ShowConfig = value;
UpdateConfig();
}
}
private bool _addscheme;
public bool Addscheme
{
get { return _addscheme; }
set
{
_addscheme = value;
UpdateScheme();
}
}
private bool _deletescheme;
public bool Deleteschememe
{
get { return _deletescheme; }
set
{
_deletescheme = value;
UpdateScheme();
}
}
private bool _loadscheme;
public bool Loadscheme
{
get { return _loadscheme; }
set
{
_loadscheme = value;
UpdateScheme();
}
}
private void UpdateScheme()
{
if (this.InvokeRequired)
{
this.Invoke(new Action(UpdateScheme));
return;
}
if (Loadscheme)
{
btnDeleteProject.Visible = true;
}
else
{
btnDeleteProject.Visible = false;
}
if (Addscheme)
{
btnAddProject.Visible = true;
}
else
{
btnAddProject.Visible = false;
}
if (Deleteschememe)
{
btnLoadProject.Visible = true;
}
else
{
btnLoadProject.Visible = false;
}
}
private void UpdateLabel()
{
if (lbName.InvokeRequired)
{
lbName.Invoke(new Action(UpdateLabel));
return;
}
lbName.Text = _loginName;
}
private void UpdateConfig()
{
if (ShowConfig)
{
if (segmented1.InvokeRequired)
{
segmented1.Invoke(new Action(UpdateConfig));
return;
}
// 恢复显示时
segmented1.Items.Insert(4, itemToHide);
}
else
{
if (segmented1.InvokeRequired)
{
segmented1.Invoke(new Action(UpdateConfig));
return;
}
segmented1.Items.Remove(itemToHide);
}
}
2025-03-07 09:06:46 +08:00
public MainWindow()
{
InitializeComponent();
2025-03-21 08:51:20 +08:00
2025-03-07 09:06:46 +08:00
//refreshTimer.Start();
//初始化数据
InitData();
//绑定事件
BindEventHandler();
2025-03-13 18:54:05 +08:00
UserConfigFrm userControlFrm = new UserConfigFrm();
2025-03-16 13:11:08 +08:00
2025-03-15 09:47:09 +08:00
userControlFrm.Window = this;
2025-03-13 18:54:05 +08:00
userControlFrm.Dock = DockStyle.Fill;
tabPage2.Controls.Add(userControlFrm);
2025-03-07 09:06:46 +08:00
}
2025-03-24 15:20:33 +08:00
SegmentedItem itemToHide;
2025-03-21 08:51:20 +08:00
private void InitData()
2025-03-07 09:06:46 +08:00
{
2025-03-24 15:20:33 +08:00
itemToHide = segmented1.Items[4];
segmented1.Items.Remove(itemToHide);
2025-03-21 08:51:20 +08:00
//加载方案
LoadScheme();
2025-03-07 09:06:46 +08:00
}
2025-03-21 08:51:20 +08:00
private void LoadScheme()
2025-03-07 09:06:46 +08:00
{
2025-03-21 08:51:20 +08:00
try
{
//方案配置初始化
SchemeHelper.Initialize();
//读取方案列表
List<string> list = SchemeHelper.GetAllSchemes();
string CurrentScheme = "默认方案";
//如果是空,新增默认数据
if (list == null || list.Count <= 0)
{
list = new() { CurrentScheme };
//显示到方案列表
sltProjects.Items.Clear();
sltProjects.Items.Add(CurrentScheme);
//保存到方案配置
SchemeHelper.AddScheme(CurrentScheme);
SchemeHelper.SetCurrentScheme(CurrentScheme);
//新构建配置文件
ConfigHelper.InitializeScheme(CurrentScheme);
sltProjects.SelectedIndex = 0;
}
else
{
foreach (string s in list)
{
sltProjects.Items.Add(s);
}
CurrentScheme = SchemeHelper.GetCurrentScheme();
sltProjects.SelectedValue = CurrentScheme;
}
SystemModel.CurrentScheme = CurrentScheme;
//加载当前方案配置
ConfigHelper.LoadConfig();
}
catch (Exception ex)
{
AntdUI.Message.error(this, ex.Message, autoClose: 3);
}
2025-03-07 09:06:46 +08:00
}
private void BindEventHandler()
{
2025-03-21 08:51:20 +08:00
btnAddProject.Click += BtnAddProject_Click;
btnDeleteProject.Click += BtnDeleteProject_Click;
2025-03-24 15:20:33 +08:00
btnLoadProject.Click += BtnLoadProject_Click;
2025-03-07 09:06:46 +08:00
}
2025-03-21 08:51:20 +08:00
private void BtnDeleteProject_Click(object? sender, EventArgs e)
{
try
{
if (sltProjects.Items.Count == 0 || sltProjects.SelectedIndex == -1) return;
2025-03-07 09:06:46 +08:00
2025-03-21 08:51:20 +08:00
var result = AntdUI.Modal.open(this, "删除警告!", "确认要删除该方案吗?", TType.Warn);
if (result == DialogResult.OK)
{
int selectedIndex = sltProjects.SelectedIndex;
// 删除当前选中项
SchemeHelper.DeleteScheme(sltProjects.Text);
ConfigHelper.DeleteSchemeConfig(sltProjects.Text);
AntdUI.Message.success(this, $"删除方案{sltProjects.Text}成功!", autoClose: 3);
sltProjects.Items.RemoveAt(selectedIndex);
// 自动选择下一个(如果存在)
if (sltProjects.Items.Count > 0)
{
// 如果删除的不是最后一项,则选中原位置的新项,否则选中最后一项
sltProjects.SelectedIndex = selectedIndex < sltProjects.Items.Count
? selectedIndex
: sltProjects.Items.Count - 1;
2025-03-07 09:06:46 +08:00
2025-03-21 08:51:20 +08:00
SystemModel.CurrentScheme = sltProjects.Text;
SchemeHelper.SetCurrentScheme(SystemModel.CurrentScheme);
//加载当前方案配置
ConfigHelper.LoadConfig();
2025-03-07 09:06:46 +08:00
2025-03-21 08:51:20 +08:00
}
else
{
sltProjects.SelectedIndex = -1; // 清空选择
AntdUI.Modal.open(this, "空方案警告!", "当前方案全部删除,需重启程序!", TType.Warn);
}
}
}
catch (Exception ex)
2025-03-07 09:06:46 +08:00
{
2025-03-21 08:51:20 +08:00
AntdUI.Message.error(this, ex.Message, autoClose: 3);
2025-03-07 09:06:46 +08:00
}
}
2025-03-21 08:51:20 +08:00
private void BtnLoadProject_Click(object? sender, EventArgs e)
2025-03-07 09:06:46 +08:00
{
2025-03-21 08:51:20 +08:00
try
{
if (sltProjects.Items.Count == 0 || sltProjects.SelectedIndex == -1) return;
if (SystemModel.CurrentScheme == sltProjects.Text)
{
AntdUI.Message.warn(this, "当前已是该方案,无需重复载入!", autoClose: 3);
return;
}
//修改当前软件当前方案
SystemModel.CurrentScheme = sltProjects.Text;
//修改配置当前方案
SchemeHelper.SetCurrentScheme(SystemModel.CurrentScheme);
//将配置文件替换为当前方案
ConfigHelper.LoadConfig();
AntdUI.Message.success(this, $"载入方案{SystemModel.CurrentScheme}成功!", autoClose: 3);
}
catch (Exception ex) {
AntdUI.Message.error(this, ex.Message, autoClose: 3);
}
2025-03-07 09:06:46 +08:00
}
2025-03-21 08:51:20 +08:00
private void BtnAddProject_Click(object? sender, EventArgs e)
2025-03-07 09:06:46 +08:00
{
2025-03-21 08:51:20 +08:00
try
{
var form = new AddSchemeControl(this, "新增方案操作") { Size = new System.Drawing.Size(400, 300) };
AntdUI.Modal.open(new AntdUI.Modal.Config(this, "", form, TType.None)
{
BtnHeight = 0,
});
if (form.submit)
{
string SchemeName = form.SchemeName;
//保存到方案配置
SchemeHelper.AddScheme(SchemeName);
if (form.NullScheme)
{
//新构建配置文件
ConfigHelper.InitializeScheme(SchemeName);
}
else
{
//派生当前方案
ConfigHelper.DeriveScheme(SchemeName);
}
//刷新方案列表
sltProjects.Items.Clear();
List<string> list = SchemeHelper.GetAllSchemes();
foreach (string s in list)
{
sltProjects.Items.Add(s);
}
string CurrentScheme = SchemeHelper.GetCurrentScheme();
sltProjects.SelectedValue = CurrentScheme;
AntdUI.Message.success(this, $"新增方案{SchemeName}成功!", autoClose: 3);
}
}
catch (Exception ex)
{
AntdUI.Message.error(this, ex.Message, autoClose: 3);
}
}
2025-03-07 09:06:46 +08:00
2025-03-21 08:51:20 +08:00
2025-03-07 09:06:46 +08:00
2025-03-15 09:47:09 +08:00
public List<Camera> HKCameras { get; } = new List<Camera>();
2025-03-07 09:06:46 +08:00
public List<Do3ThinkCamera> Cameras { get; } = new List<Do3ThinkCamera>();
public Dictionary<string, SimboObjectDetection> Dectection { get; } = new Dictionary<string, SimboObjectDetection>();
public XinJEPLCTcpNet PLC { get; } = new XinJEPLCTcpNet();
2025-03-12 09:21:06 +08:00
SLDMotion sLDMotion = new SLDMotion();
2025-03-07 09:06:46 +08:00
private void MainWindow_Load(object sender, EventArgs e)
{
}
private void MainWindow_FormClosed(object sender, FormClosedEventArgs e)
{
foreach (var camera in Cameras)
{
camera.CameraDisConnect();
}
2025-03-10 17:18:45 +08:00
foreach (var camera in HKCameras)
{
2025-03-15 09:47:09 +08:00
//var hk as HikVisionCamera;
//camera.CameraDisConnect();
2025-03-10 17:18:45 +08:00
}
2025-03-07 09:06:46 +08:00
PLC.PLCDisConnect();
}
private void segmented1_SelectIndexChanged(object sender, EventArgs e)
{
// Get the index of the selected item
int selectedIndex = segmented1.SelectIndex;
// Handle each button based on its index
switch (selectedIndex)
{
case 0: // "启动" (Start)
HandleStartButton();
break;
case 1: // "停止" (Stop)
HandleStopButton();
break;
case 2: // "复位" (Reset)
HandleResetButton();
break;
case 3: // "设置" (Settings)
2025-03-24 15:20:33 +08:00
HandleLoginButton();
2025-03-07 09:06:46 +08:00
break;
case 4: // "登录" (Login)
2025-03-24 15:20:33 +08:00
HandleSettingsButton();
2025-03-07 09:06:46 +08:00
break;
default:
break;
}
2025-03-21 08:51:20 +08:00
segmented1.SelectIndex = -1;
2025-03-07 09:06:46 +08:00
}
public bool CurrentMachine = false;
public volatile int ProductNum_Total = 0;
public volatile int ProductNum_OK = 0;
private readonly object _cameraSummaryLock = new object();
2025-03-16 13:11:08 +08:00
public SimboVisionDriver? _visionEngine = null;
2025-03-12 09:21:06 +08:00
List<DetectionConfig> DetectionConfigs = new List<DetectionConfig>();
List<SimboStationMLEngineSet> SimboStationMLEngineList = new List<SimboStationMLEngineSet>();
Dictionary<string, HDevEngineTool> HalconToolDict = new Dictionary<string, HDevEngineTool>();
2025-03-07 16:29:38 +08:00
public List<RecongnitionLabel> RecongnitionLabelList { get; set; } = new List<RecongnitionLabel>();
2025-03-12 09:21:06 +08:00
public DateTime startTime;
2025-03-07 09:06:46 +08:00
private void HandleStartButton()
{
CurrentMachine = true;
2025-03-16 13:11:08 +08:00
//_visionEngine.Start();
2025-03-07 16:29:38 +08:00
//[Category("深度学习检测配置")]
//[DisplayName("检测标签定义集合")]
//[Description("定义检测标签的集合例如Seg/Detection模式断裂、油污、划伤...Class模式ok、ng、上面、下面、套环、正常...")]
//[TypeConverter(typeof(CollectionCountConvert))]
//[Editor(typeof(ComplexCollectionEditor<RecongnitionLabel>), typeof(UITypeEditor))]
2025-03-12 17:18:39 +08:00
RecongnitionLabel recongnition = new RecongnitionLabel
2025-03-07 16:29:38 +08:00
{
2025-03-12 17:18:39 +08:00
LabelName = "youwu",
LabelDescription = "油污",
LabelCategory = "A_NG"
2025-03-07 16:29:38 +08:00
};
RecongnitionLabel recongnition2 = new RecongnitionLabel
{
LabelName = "youwu",
LabelDescription = "油污",
LabelCategory = "A_NG"
};
RecongnitionLabel recongnition3 = new RecongnitionLabel
{
LabelName = "youwu",
LabelDescription = "油污",
LabelCategory = "A_NG"
};
RecongnitionLabelList.Add(recongnition);
RecongnitionLabelList.Add(recongnition2);
RecongnitionLabelList.Add(recongnition3);
2025-03-21 08:51:20 +08:00
var det1 = new DetectionConfig("相机1", ModelType., @"D:\PROJECTS\X015\Vision\Cam1.onnx", false, "Cam1");
var det2 = new DetectionConfig("相机2", ModelType., @"D:\PROJECTS\X015\Vision\Cam2.onnx", false, "Cam2");
var det3 = new DetectionConfig("相机3", ModelType., @"D:\PROJECTS\X015\Vision\Cam3.onnx", false, "Cam3");
var det4 = new DetectionConfig("相机4", ModelType., @"D:\PROJECTS\X015\Vision\Cam4.onnx", false, "Cam4");
var det5 = new DetectionConfig("相机5", ModelType., @"D:\PROJECTS\X015\Vision\Cam5.onnx", false, "Cam5");
var det6 = new DetectionConfig("相机6", ModelType., @"D:\PROJECTS\X015\Vision\Cam6.onnx", false, "Cam6");
var det7 = new DetectionConfig("相机7", ModelType., @"D:\PROJECTS\X015\Vision\Cam7.onnx", false, "Cam7");
var det8 = new DetectionConfig("相机8", ModelType., @"D:\PROJECTS\X015\Vision\Cam8.onnx", false, "Cam8");
2025-03-12 17:18:39 +08:00
List<RelatedCamera> CameraCollects = new List<RelatedCamera>();
2025-03-07 16:29:38 +08:00
CameraCollects.Add(new RelatedCamera("Cam1"));
List<RelatedCamera> CameraCollects2 = new List<RelatedCamera>();
CameraCollects2.Add(new RelatedCamera("Cam2"));
List<RelatedCamera> CameraCollects3 = new List<RelatedCamera>();
CameraCollects3.Add(new RelatedCamera("Cam3"));
List<RelatedCamera> CameraCollects4 = new List<RelatedCamera>();
CameraCollects4.Add(new RelatedCamera("Cam4"));
List<RelatedCamera> CameraCollects5 = new List<RelatedCamera>();
CameraCollects5.Add(new RelatedCamera("Cam5"));
2025-03-12 09:21:06 +08:00
List<RelatedCamera> CameraCollects6 = new List<RelatedCamera>();
CameraCollects6.Add(new RelatedCamera("Cam6"));
List<RelatedCamera> CameraCollects7 = new List<RelatedCamera>();
CameraCollects7.Add(new RelatedCamera("Cam7"));
List<RelatedCamera> CameraCollects8 = new List<RelatedCamera>();
CameraCollects8.Add(new RelatedCamera("Cam8"));
2025-03-07 16:29:38 +08:00
float Conf = 0.5f;
2025-03-12 09:21:06 +08:00
2025-03-07 16:29:38 +08:00
det1.CameraCollects = CameraCollects;
det1.ModelconfThreshold = Conf;
det1.ModelWidth = 640;
det1.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det1.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam1.txt";
2025-03-12 09:21:06 +08:00
det1.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det1.ShowLocation.X = 1;
det1.ShowLocation.Y = 1;
2025-03-07 16:29:38 +08:00
det2.CameraCollects = CameraCollects2;
2025-03-10 13:41:12 +08:00
det2.ModelconfThreshold = Conf;
det2.ModelWidth = 640;
det2.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det2.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam2.txt";
2025-03-12 09:21:06 +08:00
det2.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det2.ShowLocation.X = 2;
det2.ShowLocation.Y = 1;
2025-03-07 16:29:38 +08:00
det3.CameraCollects = CameraCollects3;
2025-03-10 13:41:12 +08:00
det3.ModelconfThreshold = Conf;
det3.ModelWidth = 640;
det3.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det3.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam3.txt";
2025-03-12 09:21:06 +08:00
det3.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det3.ShowLocation.X = 3;
det3.ShowLocation.Y = 1;
2025-03-07 16:29:38 +08:00
det4.CameraCollects = CameraCollects4;
2025-03-10 13:41:12 +08:00
det4.ModelconfThreshold = Conf;
det4.ModelWidth = 640;
det4.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det4.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam4.txt";
2025-03-12 09:21:06 +08:00
det4.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det4.ShowLocation.X = 4;
det4.ShowLocation.Y = 1;
2025-03-12 09:21:06 +08:00
det5.CameraCollects = CameraCollects5;
det5.ModelconfThreshold = Conf;
det5.ModelWidth = 640;
det5.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det5.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam5.txt";
2025-03-12 09:21:06 +08:00
det5.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det5.ShowLocation.X = 1;
det5.ShowLocation.Y = 2;
2025-03-12 09:21:06 +08:00
det6.CameraCollects = CameraCollects6;
det6.ModelconfThreshold = Conf;
det6.ModelWidth = 640;
det6.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det6.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam6.txt";
2025-03-12 09:21:06 +08:00
det6.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det6.ShowLocation.X = 2;
det6.ShowLocation.Y = 2;
2025-03-12 09:21:06 +08:00
det7.CameraCollects = CameraCollects7;
det7.ModelconfThreshold = Conf;
det7.ModelWidth = 640;
det7.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det7.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam7.txt";
2025-03-12 09:21:06 +08:00
det7.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det7.ShowLocation.X = 3;
det7.ShowLocation.Y = 2;
2025-03-12 09:21:06 +08:00
det8.CameraCollects = CameraCollects8;
det8.ModelconfThreshold = Conf;
det8.ModelWidth = 640;
det8.ModelHeight = 640;
2025-03-21 08:51:20 +08:00
det8.In_lable_path = "D:\\PROJECTS\\X015\\Vision\\Cam8.txt";
2025-03-12 09:21:06 +08:00
det8.IsEnabled = true;
2025-03-16 13:11:08 +08:00
det8.ShowLocation.X = 4;
det8.ShowLocation.Y = 2;
2025-03-12 09:21:06 +08:00
DetectionConfigs.Add(det1);
DetectionConfigs.Add(det2);
DetectionConfigs.Add(det3);
DetectionConfigs.Add(det4);
DetectionConfigs.Add(det5);
DetectionConfigs.Add(det6);
DetectionConfigs.Add(det7);
DetectionConfigs.Add(det8);
2025-03-07 16:29:38 +08:00
Cameras.Clear();
2025-03-10 17:18:45 +08:00
HKCameras.Clear();
2025-03-07 16:29:38 +08:00
Dectection.Clear();
2025-03-07 09:06:46 +08:00
_cameraRelatedDetectionDict = new();
2025-03-12 09:21:06 +08:00
#if false
for (int i = 1; i <= 8; i++)
{
HikVisionCamera camera = new HikVisionCamera();
camera.CameraName = $"Cam{i}";
camera.CameraIP = $"192.168.{i}.1";
camera.ComputerIP = $"192.168.{i}.1";
camera.CameraConnect();
camera.OnHImageOutput += OnCameraHImageOutput;
HKCameras.Add(camera);
}
#else
2025-03-12 17:18:39 +08:00
//Do3ThinkCamera do3ThinkCamera1 = new Do3ThinkCamera();
//do3ThinkCamera1.dvpStreamFormat = dvpStreamFormat.S_RAW8;
//do3ThinkCamera1.CameraName = "Cam1";
//do3ThinkCamera1.CameraConnect();
//do3ThinkCamera1.OnHImageOutput += OnCameraHImageOutput;
// Cameras.Add(do3ThinkCamera1);
for (int i = 1; i <= 8; i++)
2025-03-12 09:21:06 +08:00
{
2025-03-12 17:18:39 +08:00
Do3ThinkCamera cam = new Do3ThinkCamera();
if (i == 1)
{
cam.dvpStreamFormat = dvpStreamFormat.S_RAW8;
}
else
{
cam.dvpStreamFormat = dvpStreamFormat.S_RGB24;
}
cam.CameraName = $"Cam{i}";
Cameras.Add(cam);
cam.CameraConnect();
2025-03-16 13:11:08 +08:00
cam.OnHImageOutput += OnCameraHImageOutput;
2025-03-12 09:21:06 +08:00
}
2025-03-12 17:18:39 +08:00
2025-03-07 09:06:46 +08:00
2025-03-12 09:21:06 +08:00
#endif
DetectionConfigs.ForEach(detection =>
2025-03-07 09:06:46 +08:00
{
2025-03-12 17:18:39 +08:00
detection.CameraCollects.ForEach(cam =>
{
List<string> Dets = new List<string>
{
2025-03-07 09:06:46 +08:00
detection.Id
2025-03-12 17:18:39 +08:00
};
if (!_cameraRelatedDetectionDict.ContainsKey(cam.CameraSourceId))
{
_cameraRelatedDetectionDict.Add(cam.CameraSourceId, Dets);
}
else
{
_cameraRelatedDetectionDict[cam.CameraSourceId].Add(detection.Id);
}
}
);
2025-03-07 09:06:46 +08:00
});
2025-03-10 17:18:45 +08:00
string inferenceDevice = "CPU";
2025-03-16 13:11:08 +08:00
_visionEngine = new SimboVisionDriver();
_visionEngine.DetectionConfigs = DetectionConfigs;
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
_visionEngine.Init();
CtrlVisionRunBase ctrlVisionRun = new CtrlVisionRunBase(_visionEngine);
tabImgDisplay.Controls.Add(ctrlVisionRun);
2025-03-10 17:18:45 +08:00
2025-03-12 09:21:06 +08:00
//Add the code for the "启动" button click here
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
////初始化Halcon工具
//InitialHalconTools();
2025-03-12 17:18:39 +08:00
2025-03-16 13:11:08 +08:00
////深度学习模型加载
//bool resultOK = InitialSimboMLEnginesAsync();
//if (resultOK)
//{
// //初始化失败
// // return;
//}
2025-03-12 09:21:06 +08:00
//位置比较卡
2025-03-12 17:18:39 +08:00
2025-03-12 09:21:06 +08:00
sLDMotion.AxisSettings = new List<AxisSetting>();
2025-03-12 17:18:39 +08:00
AxisSetting axis1 = new AxisSetting();
2025-03-12 09:21:06 +08:00
axis1.AxisIndex = 0;
axis1.AxisName = "转盘1";
axis1.IsAxisEnabled = true;
//axis1.AlarmLogic = AxisDirection.Positive;
2025-03-12 17:18:39 +08:00
sLDMotion.IODefinitionCollection = new List<IODefinition>();
2025-03-12 09:21:06 +08:00
Motion(sLDMotion.IODefinitionCollection);
2025-03-10 17:18:45 +08:00
2025-03-07 09:06:46 +08:00
2025-03-12 09:21:06 +08:00
sLDMotion.SnapshotSettings = new List<SnapshotSetting>();
2025-03-12 17:18:39 +08:00
int[] cameraPositions = { 24161, 33608, 39702, 45701 };
2025-03-07 09:06:46 +08:00
2025-03-12 17:18:39 +08:00
sLDMotion.SnapshotSettings.Add(new SnapshotSetting
{
IsEnabled = true,
CameraIO = sLDMotion.IODefinitionCollection.FirstOrDefault(t => t.IOType == IOType.OUTPUT && t.IOIndex == 13),
CameraPosition = 7613,
StationNumber = 0
});
for (int i = 0; i < 4; i++)
2025-03-12 09:21:06 +08:00
{
sLDMotion.SnapshotSettings.Add(new SnapshotSetting
{
IsEnabled = true,
CameraIO = sLDMotion.IODefinitionCollection.FirstOrDefault(t => t.IOType == IOType.OUTPUT && t.IOIndex == i),
CameraPosition = cameraPositions[i],
StationNumber = 0
});
}
2025-03-07 09:06:46 +08:00
2025-03-12 09:21:06 +08:00
sLDMotion.BlowSettings = new List<BlowSetting>();
int[] BlowPositions = { 61353, 68566 };
2025-03-12 17:18:39 +08:00
sLDMotion.BlowSettings.Add(new BlowSetting
2025-03-12 09:21:06 +08:00
{
2025-03-12 17:18:39 +08:00
IsEnabled = true,
BlowIO = sLDMotion.IODefinitionCollection.FirstOrDefault(t => t.IOType == IOType.OUTPUT && t.IOIndex == 5),
BlowPosition = BlowPositions[0],
StationNumber = 0
});
sLDMotion.BlowSettings.Add(new BlowSetting
{
IsEnabled = true,
BlowIO = sLDMotion.IODefinitionCollection.FirstOrDefault(t => t.IOType == IOType.OUTPUT && t.IOIndex == 6),
BlowPosition = BlowPositions[1],
StationNumber = 0
});
2025-03-07 09:06:46 +08:00
2025-03-12 09:21:06 +08:00
//SnapshotSetting sna1 = new SnapshotSetting();
//sna1.IsEnabled = true;
//sna1.CameraIO= sLDMotion.IODefinitionCollection.FirstOrDefault(t => t.IOType == IOType.OUTPUT && t.IOIndex == 0);
//sna1.CameraPosition = 17000;
//sna1.StationNumber = 0;
2025-03-07 09:06:46 +08:00
2025-03-12 09:21:06 +08:00
// sLDMotion.SnapshotSettings.Add(sna1);
sLDMotion.AxisSettings.Add(axis1);
sLDMotion.Init();
2025-03-12 17:18:39 +08:00
sLDMotion.OnNewPieces -= MainMotion_NewPieces;
sLDMotion.OnNewPieces += MainMotion_NewPieces;
// sLDMotion.Start();
2025-03-12 09:21:06 +08:00
//PLC.IP = "192.168.6.6";
//PLC.Port = 502;
//PLC.PLCConnect();
//PLC.OnNewPieces -= MainMotion_NewPieces;
//PLC.OnNewPieces += MainMotion_NewPieces;
2025-03-12 17:18:39 +08:00
ProductBaseCount = 8;
2025-03-07 09:06:46 +08:00
for (int i = 0; i < ProductBaseCount * ProductListMulti; i++)
{
ConcurrentDictionary<uint, ProductData> products = new ConcurrentDictionary<uint, ProductData>();
_productLists.Add(products);
}
2025-03-12 17:18:39 +08:00
sLDMotion.AxisStop();
bool e = sLDMotion.CArdReset();
//转盘速度
sLDMotion.JOGRun(14000, 100000);
startTime = DateTime.Now;
2025-03-07 09:06:46 +08:00
}
2025-03-12 09:21:06 +08:00
public void Motion(List<IODefinition> iODefinitions)
{
for (int i = 0; i < 16; i++)
{
iODefinitions.Add(new IODefinition
{
IOType = IOType.INPUT,
IOIndex = i,
IODesc = $"入料传感器{i + 1}"
});
}
for (int i = 0; i < 16; i++)
{
iODefinitions.Add(new IODefinition
{
IOType = IOType.OUTPUT,
IOIndex = i,
IODesc = $"入料传感器{i + 1}"
});
}
}
2025-03-07 09:06:46 +08:00
private uint PieceCount = 0;
private List<ConcurrentDictionary<uint, ProductData>> _productLists = new List<ConcurrentDictionary<uint, ProductData>>();
private int ProductListMulti = 2;
private int ProductBaseCount = 0;
private int PieceNumberToIndex(uint pn)
{
// 物料编号,取余 集合数量
2025-03-12 17:18:39 +08:00
2025-03-07 09:06:46 +08:00
int ret = (int)(pn % (ProductBaseCount * ProductListMulti));
return ret;
}
DateTime _ctTime = DateTime.Now;
public async void MainMotion_NewPieces(int axisIndex, uint pieceNumber)
{
//if (MachineState != MachineState.Running && MachineState != MachineState.Warning)
//{
// return;
//}
PieceCount++;
2025-03-12 17:18:39 +08:00
2025-03-07 09:06:46 +08:00
int index = PieceNumberToIndex(pieceNumber);
// productDatas.Add(pData);
//转盘2 的物料是不是重新覆盖之前的pDta
if (axisIndex == 1)
{
ProductData pData = new ProductData("", pieceNumber, ProductBaseCount);
_productLists[index][pieceNumber] = pData;
}
2025-03-12 17:18:39 +08:00
string logStr = $"时间:{DateTime.Now} 轴{axisIndex}新产品{pieceNumber}加入队列{index}----入料计数{PieceCount}\n";
Task.Run(() =>
{
2025-03-13 18:54:05 +08:00
//this.BeginInvoke(new MethodInvoker(delegate () { richTextBox1.AppendText(logStr); }));
2025-03-07 16:29:38 +08:00
});
2025-03-07 09:06:46 +08:00
DateTime dtNow = DateTime.Now;
UpdateCT(null, (float)(dtNow - _ctTime).TotalSeconds);
_ctTime = dtNow;
}
public async Task UpdateCT(object objData, float ctTime)
{
await Task.Run(() =>
{
2025-03-12 17:18:39 +08:00
//OnUpdateCT?.Invoke(objData, ctTime);
2025-03-07 09:06:46 +08:00
});
}
2025-03-12 09:21:06 +08:00
/// <summary>
2025-03-16 13:11:08 +08:00
/// 相机回调
2025-03-12 09:21:06 +08:00
/// </summary>
2025-03-16 13:11:08 +08:00
/// <param name="dt"></param>
/// <param name="camera"></param>
/// <param name="imageSet"></param>
private void OnCameraHImageOutput(DateTime dt, CameraBase camera, Mat imageSet)
2025-03-12 09:21:06 +08:00
{
2025-03-16 13:11:08 +08:00
//if (camera.CameraName.Equals("cam1", StringComparison.OrdinalIgnoreCase))
//{
// Console.WriteLine();
//}
//if (camera.CameraName.Equals("cam2", StringComparison.OrdinalIgnoreCase))
//{
// Console.WriteLine();
//}
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
// 获取该相机的拍照计数
uint productNumber = (uint)camera.SnapshotCount;
2025-03-12 17:18:39 +08:00
2025-03-16 13:11:08 +08:00
Task.Run(async () =>
2025-03-12 09:21:06 +08:00
{
2025-03-16 13:11:08 +08:00
using (Mat localImageSet = imageSet.Clone()) // 复制 Mat 避免并发问题
2025-03-12 09:21:06 +08:00
{
2025-03-16 13:11:08 +08:00
// imageSet?.Dispose();
// 拍照计数与物件编号一致,查找对应的产品
ProductData product = null;
//内外壁模组多个相机的处理方法
//计算队列的方法不变
int index = PieceNumberToIndex(productNumber);
// 找到产品存放在哪个队列里
ConcurrentDictionary<uint, ProductData> tmpDic = _productLists[index];
try
2025-03-12 09:21:06 +08:00
{
2025-03-16 13:11:08 +08:00
int retryTimes = 100;
while (product == null && retryTimes > 0)
2025-03-12 09:21:06 +08:00
{
2025-03-16 13:11:08 +08:00
if (tmpDic.ContainsKey(productNumber))
{
product = tmpDic[productNumber];
}
else
{
// Thread.Sleep(20);
await Task.Delay(20);
}
retryTimes--;
}
// 如果产品为空,则销毁图片,提示错误
if (null == product)
{
List<uint> pnList = tmpDic.Keys.ToList();
string pnStr = "";
if (pnList != null && pnList.Count > 0)
{
pnStr = string.Join(",", pnList);
}
//LogAsync(DateTime.Now, LogLevel.Error, $"{camera.Name} 未找到产品,编号:{productNumber},队列{index}数量:{tmpDic.Count},列表:{pnStr}");
localImageSet.Dispose();
this.BeginInvoke(new MethodInvoker(delegate ()
{
int currentScrollPosition = richTextBox1.GetPositionFromCharIndex(richTextBox1.TextLength).Y;
richTextBox1.AppendText(productNumber + "提前推出" + camera.CameraName);
// 设置回原来的滚动位置
richTextBox1.SelectionStart = richTextBox1.TextLength;
richTextBox1.ScrollToCaret();
}));
//重新生成实例 销毁之前的实例
using (StreamWriter sw = new StreamWriter("D://123log.txt", true, Encoding.UTF8))
{
sw.WriteLine(productNumber + "提前推出" + camera.CameraName);
}
return;
2025-03-12 09:21:06 +08:00
}
2025-03-16 13:11:08 +08:00
// LogAsync(DateTime.Now, LogLevel.Information, $"{camera.Name} 找到产品{productNumber},队列{index}数量:{tmpDic.Count}");
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
if (!_cameraRelatedDetectionDict.ContainsKey(camera.CameraName))
{
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
localImageSet.Dispose();
this.BeginInvoke(new MethodInvoker(delegate ()
{
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
int currentScrollPosition = richTextBox1.GetPositionFromCharIndex(richTextBox1.TextLength).Y;
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
richTextBox1.AppendText(productNumber + "提前推出" + camera.CameraName);
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
// 设置回原来的滚动位置
richTextBox1.SelectionStart = richTextBox1.TextLength;
richTextBox1.ScrollToCaret();
}));
//重新生成实例 销毁之前的实例
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
using (StreamWriter sw = new StreamWriter("D://123log.txt", true, Encoding.UTF8))
{
sw.WriteLine(productNumber + "提前推出" + camera.CameraName);
}
// LogAsync(DateTime.Now, LogLevel.Warning, $"{camera.Name} 找到产品{productNumber}但是没有推理1");
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
return;
}
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
double totalTime = 0.0;
List<ResultState> resultStates = new List<ResultState>();
List<string>? detectionDict = _cameraRelatedDetectionDict[camera.CameraName];
2025-03-10 17:18:45 +08:00
2025-03-10 13:41:12 +08:00
2025-03-16 13:11:08 +08:00
for (int i = 0; i < detectionDict.Count; i++)
{
string detectionId = detectionDict[i];
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
// 1. 预处理
using (Mat inferenceImage = localImageSet.Clone()) // 仅在此处克隆,确保推理过程中 Mat 有独立副本
{
DetectStationResult temp1=_visionEngine.RunInference(inferenceImage, detectionId);
2025-03-10 13:41:12 +08:00
2025-03-16 13:11:08 +08:00
resultStates.Add(temp1.ResultState);
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
product.ResultCollection.Add(temp1);
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
}
2025-03-10 13:41:12 +08:00
2025-03-16 13:11:08 +08:00
}
2025-03-10 13:41:12 +08:00
2025-03-16 13:11:08 +08:00
product.InferenceOne();
2025-03-10 13:41:12 +08:00
2025-03-16 13:11:08 +08:00
// LogAsync(DateTime.Now, LogLevel.Information, $"{camera.Name} 推理完成,产品{productNumber}");
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
if (!product.InferenceFinished())
{
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
return;
}
ProductNum_Total++;
CalculateOEE();
this.BeginInvoke(new MethodInvoker(delegate ()
{
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
int currentScrollPosition = richTextBox1.GetPositionFromCharIndex(richTextBox1.TextLength).Y;
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
richTextBox1.AppendText($"统计结果成功,{productNumber} 吹气!\n");
2025-03-07 16:29:38 +08:00
2025-03-16 13:11:08 +08:00
// 设置回原来的滚动位置
richTextBox1.SelectionStart = richTextBox1.TextLength;
richTextBox1.ScrollToCaret();
}));
#region 6.
product.ProductResult = product.ResultCollection.Any(u => u.ResultState != ResultState.OK)
? ResultState.B_NG
: ResultState.OK;
product.ProductLabelCategory = product.ProductResult.GetEnumDescription();
product.ProductLabel = product.ProductResult.GetEnumDescription();
#endregion
#region 7.
2025-03-10 17:18:45 +08:00
2025-03-16 13:11:08 +08:00
#endregion
2025-03-10 17:18:45 +08:00
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
// 出列
ProductData temp = null;
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
int tryTimes = 10;
while (temp == null && tryTimes > 0)
{
if (tmpDic.TryRemove(productNumber, out temp))
{
break;
}
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
tryTimes--;
Thread.Sleep(5);
}
if (temp == null)
{
string logStr = $"{DateTime.Now}产品{productNumber}出列失败true" +
$"当前队列产品数量:{tmpDic.Count}";
this.BeginInvoke(new MethodInvoker(delegate ()
{
2025-03-12 09:21:06 +08:00
2025-03-16 13:11:08 +08:00
int currentScrollPosition = richTextBox1.GetPositionFromCharIndex(richTextBox1.TextLength).Y;
2025-03-12 17:18:39 +08:00
2025-03-16 13:11:08 +08:00
richTextBox1.AppendText(logStr);
2025-03-12 17:18:39 +08:00
2025-03-16 13:11:08 +08:00
// 设置回原来的滚动位置
richTextBox1.SelectionStart = richTextBox1.TextLength;
richTextBox1.ScrollToCaret();
}));
}
else
{
try
{
string logStr = $"{DateTime.Now}产品{productNumber}出列成功true" +
$"产品结果:{temp.ProductResult.GetEnumDescription()}" +
$"当前队列产品数量:{tmpDic.Count}";
this.BeginInvoke(new MethodInvoker(delegate ()
{
int currentScrollPosition = richTextBox1.GetPositionFromCharIndex(richTextBox1.TextLength).Y;
richTextBox1.AppendText(logStr);
// 设置回原来的滚动位置
richTextBox1.SelectionStart = richTextBox1.TextLength;
richTextBox1.ScrollToCaret();
}));
//重新生成实例 销毁之前的实例
var saveData = temp.GetProductData();
using (StreamWriter sw = new StreamWriter("D://123log.txt", true, Encoding.UTF8))
{
sw.WriteLine(logStr);
}
}
catch (Exception) { }
finally
{
// temp.Dispose();
temp = null;
}
}
2025-03-12 17:18:39 +08:00
2025-03-16 13:11:08 +08:00
// UpdateCT((float)(dtNow - _ctTime).TotalSeconds);
//_ctTime = dtNow;
// });
2025-03-12 17:18:39 +08:00
2025-03-07 09:06:46 +08:00
2025-03-16 13:11:08 +08:00
}
catch (Exception ex)
{
//LogAsync(DateTime.Now, LogLevel.Error, $"流程检测未捕获的异常:{ex.GetExceptionMessage()}");
product?.Dispose();
}
}
2025-03-10 13:41:12 +08:00
2025-03-16 13:11:08 +08:00
});
}
2025-03-10 13:41:12 +08:00
2025-03-12 09:21:06 +08:00
2025-03-07 16:29:38 +08:00
public void SetResult()
{
2025-03-12 17:18:39 +08:00
2025-03-07 16:29:38 +08:00
//// detectResult.IsPreTreatDone = detectResult.VisionImageSet.PreTreatedFlag
////2024-02-29 目标检测不能全是NG
//if (IsPreTreatNG || IsObjectDetectNG)
//{
// return;
//}
//if (IsPreTreatDone && IsMLDetectDone && IsAfterTreatDone)
//{
// ResultState = ResultState.OK;
// ResultLabel = ResultState.OK.GetEnumDescription();
//}
}
2025-03-07 09:06:46 +08:00
private void HandleStopButton()
{
Cameras.Clear();
Dectection.Clear();
// Add the code for the "停止" button click here
2025-03-12 17:18:39 +08:00
// PLC.TurntableStop();
2025-03-07 09:06:46 +08:00
CurrentMachine = true;
2025-03-12 09:21:06 +08:00
sLDMotion.Stop();
2025-03-07 09:06:46 +08:00
}
2025-03-12 17:18:39 +08:00
public int UPH = 0;
2025-03-07 09:06:46 +08:00
public void CalculateOEE()
{
2025-03-12 09:21:06 +08:00
TimeSpan timeSpan = DateTime.Now - startTime;
2025-03-07 09:06:46 +08:00
2025-03-12 17:18:39 +08:00
UPH = (int)(ProductNum_Total / timeSpan.TotalHours) + 100;
2025-03-07 09:06:46 +08:00
//UPM = (int)UPH / 60;
2025-03-12 17:18:39 +08:00
this.BeginInvoke(new MethodInvoker(delegate ()
{
label1.Text = UPH.ToString();
2025-03-07 09:06:46 +08:00
}));
}
private void HandleResetButton()
{
// Add the code for the "复位" button click here
MessageBox.Show("复位按钮按下");
}
private void HandleSettingsButton()
{
// Add the code for the "设置" button click here
2025-03-15 09:47:09 +08:00
// MessageBox.Show("设置按钮按下");
List<CameraBase> listCamBase = new List<CameraBase>();
CameraBase cam1 = new CameraBase
{
CameraName = "Cam1",
CameraIP = "192.168.1.101",
SerialNumber = "1000001",
Gain = 60,
Exposure = 10,
RotateImage = 0,
2025-03-18 14:19:33 +08:00
IsEnabled = false,
2025-03-15 09:47:09 +08:00
};
CameraBase cam2 = new CameraBase
{
CameraName = "Cam2",
CameraIP = "192.168.1.101",
SerialNumber = "1000002",
Gain = 60,
Exposure = 10,
RotateImage = 0,
2025-03-18 14:19:33 +08:00
IsEnabled = false,
2025-03-15 09:47:09 +08:00
};
listCamBase.Add(cam1);
listCamBase.Add(cam2);
2025-03-13 18:54:05 +08:00
2025-03-21 08:51:20 +08:00
SettingWindow settingWindow = new SettingWindow();
2025-03-16 17:32:09 +08:00
settingWindow.Show();
//s.cameras = listCamBase;
//s.Show();
2025-03-13 18:54:05 +08:00
2025-03-07 09:06:46 +08:00
}
private void HandleLoginButton()
{
// Add the code for the "登录" button click here
2025-03-24 15:20:33 +08:00
LoginWindow loginWindow = new LoginWindow();
loginWindow.Owner = this;
loginWindow.Show();
2025-03-07 09:06:46 +08:00
}
2025-03-13 18:54:05 +08:00
private void splitter1_SplitterMoved(object sender, SplitterEventArgs e)
{
}
2025-03-07 09:06:46 +08:00
}
}