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