增加查找线工具

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

18
ToolBase/IToolBase.cs Normal file
View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CommonMethods;
using HalconDotNet;
namespace ToolBase
{
public interface IToolBase
{
ToolRunStatu toolRunStatu { get; set; }
void Run();
HObject inputImage { get; set; }
void DispImage();
}
}