轮胎外观检测添加思谋语义分割模型检测工具
C3204
2026-04-02 3c837a3be1548e296d6ed1afb32ebe418b69db25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace LB_SmartVisionCameraDevice
{
    /// <summary>
    /// CameraType
    /// </summary>
    public enum DeviceType
    {
        /// <summary>
        /// 6000系列扫描头子
        /// </summary>
        PHM6000Series,
        /// <summary>
        /// 5000系列扫描头子
        /// </summary>
        PHM5000Series,
        /// <summary>
        /// 2000系列扫描头子
        /// </summary>
        PHM2000Series
    }
}