mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-23 16:26:35 +08:00
19 lines
363 B
C#
19 lines
363 B
C#
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();
|
|
}
|
|
}
|