using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamAAS_VP.Enums
{
public enum ProcedureOutputValueType
{
///
/// 整型
///
IntDataArray=0,
///
/// 浮点型
///
FloatDataArray=1,
///
/// 字符串型结果
///
StringDataArray = 2,
///
/// 二进制数据型结果
///
StringData=3,
///
/// 获取图像结果
///
ImageBaseData = 4,
///
/// 获取点输出集合
///
List_PointF=5,
///
/// 直线输出集合
///
List_Line = 6,
///
/// 圆输出集合
///
List_Circle = 7,
///
/// 带角度矩形输出集合
///
List_RectBox = 8,
///
/// 无角度矩形(浮点型)输出集合
///
List_RectF = 9,
///
/// 位置修正输出集合
///
List_Fixture = 10,
///
/// 圆环输出集合
///
List_Annulus = 11,
///
/// 类别信息输出集合
///
List_ClassInfo = 12,
///
/// 带类别信息的图
///
PixelImage = 13,
///
/// 位姿集合
///
List_Posture = 14,
///
/// 多边形输出集合
///
List_Polygon = 15,
///
/// 椭圆输出集合
///
List_Ellipse = 16
}
}