ProcedureOutputValueType.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace TeamAAS_VP.Enums
  7. {
  8. public enum ProcedureOutputValueType
  9. {
  10. /// <summary>
  11. /// 整型
  12. /// </summary>
  13. IntDataArray=0,
  14. /// <summary>
  15. /// 浮点型
  16. /// </summary>
  17. FloatDataArray=1,
  18. /// <summary>
  19. /// 字符串型结果
  20. /// </summary>
  21. StringDataArray = 2,
  22. /// <summary>
  23. /// 二进制数据型结果
  24. /// </summary>
  25. StringData=3,
  26. /// <summary>
  27. /// 获取图像结果
  28. /// </summary>
  29. ImageBaseData = 4,
  30. /// <summary>
  31. /// 获取点输出集合
  32. /// </summary>
  33. List_PointF=5,
  34. /// <summary>
  35. /// 直线输出集合
  36. /// </summary>
  37. List_Line = 6,
  38. /// <summary>
  39. /// 圆输出集合
  40. /// </summary>
  41. List_Circle = 7,
  42. /// <summary>
  43. /// 带角度矩形输出集合
  44. /// </summary>
  45. List_RectBox = 8,
  46. /// <summary>
  47. /// 无角度矩形(浮点型)输出集合
  48. /// </summary>
  49. List_RectF = 9,
  50. /// <summary>
  51. /// 位置修正输出集合
  52. /// </summary>
  53. List_Fixture = 10,
  54. /// <summary>
  55. /// 圆环输出集合
  56. /// </summary>
  57. List_Annulus = 11,
  58. /// <summary>
  59. /// 类别信息输出集合
  60. /// </summary>
  61. List_ClassInfo = 12,
  62. /// <summary>
  63. /// 带类别信息的图
  64. /// </summary>
  65. PixelImage = 13,
  66. /// <summary>
  67. /// 位姿集合
  68. /// </summary>
  69. List_Posture = 14,
  70. /// <summary>
  71. /// 多边形输出集合
  72. /// </summary>
  73. List_Polygon = 15,
  74. /// <summary>
  75. /// 椭圆输出集合
  76. /// </summary>
  77. List_Ellipse = 16
  78. }
  79. }