mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-23 16:26:35 +08:00
50 lines
1.7 KiB
C#
50 lines
1.7 KiB
C#
/*
|
|
* ==============================================================================
|
|
*
|
|
* Filename: HalconToolRun
|
|
* Description:
|
|
*
|
|
* Version: 1.0
|
|
* Created: 2021/2/25 16:03:59
|
|
*
|
|
* Author: liu.wenjie
|
|
*
|
|
* ==============================================================================
|
|
*/
|
|
using CommonMethods.Interface;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using CommonMethods;
|
|
using System.Windows.Forms;
|
|
using System.Drawing;
|
|
using FormLib;
|
|
using ToolLib.VisionJob;
|
|
|
|
namespace HalconTool
|
|
{
|
|
public class HalconToolRun : IToolRun
|
|
{
|
|
public void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList, IVisionJob runJob, Form myHalconWindowForm)
|
|
{
|
|
Type a = this.GetType();
|
|
HalconTool myHalconTool = (HalconTool)L_toolList[toolIndex].tool;
|
|
VisionJob myJob = (VisionJob)runJob;
|
|
myHalconTool.Run(SoftwareRunState.Release);
|
|
if (myHalconTool.toolRunStatu != ToolRunStatu.Succeed)
|
|
{
|
|
myJob.FormLogDisp($"{L_toolList[toolIndex].toolName} 运行失败,失败原因:{myHalconTool.runMessage}", Color.Red, selectNode, Logger.MsgLevel.Exception);
|
|
}
|
|
else
|
|
{
|
|
myJob.FormLogDisp($"{L_toolList[toolIndex].toolName} 运行成功,{myHalconTool.runTime}", Color.Green, selectNode);
|
|
((FormImageWindow)myHalconWindowForm).myHWindow.DispImage(myHalconTool.outputImage);
|
|
L_toolList[toolIndex].toolOutput[0] = new ToolIO("OutputImage", myHalconTool.outputImage, DataType.Image);
|
|
}
|
|
L_toolList[toolIndex].toolRunStatu = myHalconTool.toolRunStatu;
|
|
}
|
|
}
|
|
}
|