using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DH.Devices.Vision { //工站 模型检测引擎 public class SimboStationMLEngineSet { public bool IsUseGPU { get; set; } /// /// GPU设备号 /// public int GPUNo { get; set; } /// /// CPU线程号 /// public int CPUNo { get; set; } /// /// 检测配置ID /// public string DetectionId { get; set; } public string DetectionName { get; set; } /// /// 深度学习模型 /// public SimboVisionMLBase StationMLEngine { get; set; } } }