增加查找线工具

This commit is contained in:
liu.wenjie
2019-08-04 21:51:40 +08:00
committed by liu.wenjie
parent 61de0d1236
commit 9d8944dcc3
256 changed files with 719371 additions and 778 deletions

View File

@@ -0,0 +1,27 @@
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
{
}
}
}
}