using CanFly.Canvas.Shape; using CanFly.Canvas.UI; using CanFly.Helper; using HalconDotNet; using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CanFly.UI.GuidePanel { public class BaseGuideControl : UserControl { public Action? OnControlCloseEvent; public event Action OnDataPassed; private string _currentImageFile; public string CurrentImageFile; protected string _hScriptsDir = Path.Combine(Environment.CurrentDirectory, "hscripts"); protected HObject? hImage = null; protected FlyCanvas _canvas; private HDevEngineTool? tool = null; public void DataToTriggerEvent(string input,string output) { OnDataPassed?.Invoke(input, output); } protected virtual void UpdateShape(FlyShape shape) { throw new NotImplementedException(); } protected virtual string GetScriptFileName() { throw new NotImplementedException(); } /// /// 执行Halcon脚本 /// /// 输入图像 /// 输入参数 /// 输出参数 protected void ExecuteHScript( Dictionary inputImg, Dictionary inputDic, List outputParamKeys, Action? exceptionHandler = null) { string filePath = Path.Combine(_hScriptsDir, GetScriptFileName()); if (!File.Exists(filePath)) { MessageBox.Show($"文件 {filePath} 不存在"); return; } try { if (tool == null) { tool = new HDevEngineTool(_hScriptsDir); tool.LoadProcedure(Path.GetFileNameWithoutExtension(GetScriptFileName())); } //tool.InputImageDic["INPUT_Image"] = hImage; //tool.InputTupleDic["XCenter"] = _x; //tool.InputTupleDic["YCenter"] = _y; //tool.InputTupleDic["Radius"] = _r; tool.InputImageDic = inputImg; tool.InputTupleDic = inputDic; Dictionary outputParams = new Dictionary(); if (!tool.RunProcedure(out string error, out int timeElasped)) { OnExecuteHScriptResult(false, outputParams, timeElasped); return; } for (int i = 0; i < outputParamKeys.Count; i++) { string k = outputParamKeys[i]; outputParams[k] = tool.GetResultTuple(k); } OnExecuteHScriptResult(true, outputParams, timeElasped); } catch (Exception ex) { exceptionHandler?.Invoke(ex); } finally { hImage?.Dispose(); hImage = null; } } /// /// Halcon脚本执行结果回调函数,重写该方法以自行处理算法执行结果 /// /// 算法执行是否成功 /// 算法输出结果 /// 算法耗时,单位:ms protected virtual void OnExecuteHScriptResult(bool success, Dictionary resultDic, int timeElasped) { throw new NotImplementedException(); } protected void OpenImageFile(Action callback) { OpenFileDialog ofd = new OpenFileDialog(); ofd.Filter = "图像文件|*.jpg;*.jpeg;*.png"; ofd.Multiselect = false; if (ofd.ShowDialog() == DialogResult.OK) { CurrentImageFile = ofd.FileName; Bitmap bitmap = (Bitmap)Image.FromFile(CurrentImageFile); callback?.Invoke(bitmap); } } protected void OnControlClose() { OnControlCloseEvent?.Invoke(); } } }