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
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace HalconTools
| {
| public enum ToolType
| {
| /// <summary>
| /// 找直线
| /// </summary>
| FindLine = 0,
|
| /// <summary>
| /// 找圆
| /// </summary>
| FindCircle = 1,
|
| /// <summary>
| /// 匹配
| /// </summary>
| Matching = 2,
|
| /// <summary>
| /// 螺丝孔定位
| /// </summary>
| Screw = 3,
| }
| }
|
|