Files
VisionEdit/CommonMethods/ComGlobalParams.cs
eggplantlwj 62477b8091 1、修复因加入输入位姿引发的BUG
2、PMA工具完善
3、其他BUG修复
2022-03-21 14:48:26 +08:00

28 lines
554 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using HalconDotNet;
namespace CommonMethods
{
public class ComGlobalParams
{
public static HObject inputImageGlobal
{
get
{
HObject inputImage = new HObject();
HOperatorSet.ReadImage(out inputImage, @"G:\Outer_HB.bmp");
return inputImage;
}
set
{
}
}
}
}