mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-23 16:26:35 +08:00
22 lines
529 B
C#
22 lines
529 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
|
|
{
|
|
SoftwareRunState softwareRunState { get; set; }
|
|
ToolRunStatu toolRunStatu { get; set; }
|
|
string runMessage { get; set; }
|
|
string runTime { get; set; }
|
|
void Run(SoftwareRunState softwareRunState);
|
|
HObject inputImage { get; set; }
|
|
void DispImage();
|
|
}
|
|
}
|