修改板卡
This commit is contained in:
35
DH.Devices.Vision/SimboVisionModel.cs
Normal file
35
DH.Devices.Vision/SimboVisionModel.cs
Normal file
@ -0,0 +1,35 @@
|
||||
|
||||
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; }
|
||||
/// <summary>
|
||||
/// GPU设备号
|
||||
/// </summary>
|
||||
public int GPUNo { get; set; }
|
||||
/// <summary>
|
||||
/// CPU线程号
|
||||
/// </summary>
|
||||
public int CPUNo { get; set; }
|
||||
/// <summary>
|
||||
/// 检测配置ID
|
||||
/// </summary>
|
||||
public string DetectionId { get; set; }
|
||||
|
||||
public string DetectionName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 深度学习模型
|
||||
/// </summary>
|
||||
public SimboVisionMLBase StationMLEngine { get; set; }
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user