From b19feb5a4496bef2dd2b601e99fba2d0829168f2 Mon Sep 17 00:00:00 2001 From: "xhm\\HP" <1173131411@qq.com> Date: Thu, 27 Mar 2025 18:03:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=8A=E6=94=BE=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DH.Devices.Vision/SimboVisionDriver.cs | 15 ++++++++++++++- DHSoftware/MainWindow.cs | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/DH.Devices.Vision/SimboVisionDriver.cs b/DH.Devices.Vision/SimboVisionDriver.cs index 37efa21..afa5444 100644 --- a/DH.Devices.Vision/SimboVisionDriver.cs +++ b/DH.Devices.Vision/SimboVisionDriver.cs @@ -36,7 +36,20 @@ namespace DH.Devices.Vision // ImageSaveHelper.OnImageSaveExceptionRaised += ImageSaveHelper_OnImageSaveExceptionRaised; // base.Init(); } - + public void Stop() + { + SimboStationMLEngineList.ToList().ForEach(sm => + { + if (sm.IsUseGPU) + { + sm.StationMLEngine.Dispose(); + } + else + { + sm.StationMLEngine.Dispose2(); + } + }); + } //private void ImageSaveHelper_OnImageSaveExceptionRaised(DateTime dt, string msg) //{ // LogAsync(new LogMsg(dt, LogLevel.Error, msg)); diff --git a/DHSoftware/MainWindow.cs b/DHSoftware/MainWindow.cs index fa2fc4d..8754f09 100644 --- a/DHSoftware/MainWindow.cs +++ b/DHSoftware/MainWindow.cs @@ -517,7 +517,7 @@ namespace DHSoftware { PLC.CloseProcess(); } - + _visionEngine.Stop();//释放模型 CloseWindow.Instance.Close();// 关闭提示窗口 //Application.Exit(); System.Environment.Exit(0);