ResultBean.cs
931 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AOI
{
public class ResultBean
{
public ResultBean(string name)
{
this.MethodName = name;
}
/// <summary>
/// 名称
/// </summary>
public string MethodName;
/// <summary>
/// AOI标识
/// </summary>
public string labelKey;
/// <summary>
/// AOI检测结果,true表示OK, false表示NG
/// </summary>
public bool result = false;
/// <summary>
/// 标准区域图片
/// </summary>
public Image standardRoiImage;
/// <summary>
/// 当前区域图片
/// </summary>
public Image currentRoiImage;
public GraphicsPath roiPath;
}
}