Files
VisionEdit/ToolBase/IToolBase.cs

19 lines
363 B
C#
Raw Normal View History

2019-08-04 21:51:40 +08:00
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();
}
}