mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-30 04:28:38 +08:00
增加查找线工具
This commit is contained in:
27
CommonMethods/ComGlobalParams.cs
Normal file
27
CommonMethods/ComGlobalParams.cs
Normal 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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user