| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using TeamAAS_VP.Attributes;
- using TeamAAS_VP.Resources.Languages;
- using TeamAAS_VP.ValueConverter;
- namespace TeamAAS_VP.Enums
- {
- /// <summary>
- /// 相机品牌
- /// </summary>
- [TypeConverter(typeof(EnumLocalizationConverter))]
- public enum CameraBrand
- {
- /// <summary>
- /// 海康相机
- /// </summary>
- [Description("海康相机(MVS)")]
- [Localization(ResourceName = "CameraBrand_HikRobotMVS", ResourceType = typeof(Lang))]
- HikRobot_MVS = 0,
- /// <summary>
- /// 巴斯勒相机
- /// </summary>
- [Description("巴斯勒相机(Pylon)")]
- [Localization(ResourceName = "CameraBrand_Pylon", ResourceType = typeof(Lang))]
- Basler_Pylon = 1,
- /// <summary>
- /// 华睿科技
- /// </summary>
- [Description("大华(MV)")]
- [Localization(ResourceName = "CameraBrand_IRayple", ResourceType = typeof(Lang))]
- IRayple = 2,
- /// <summary>
- /// 康耐视
- /// </summary>
- [Description("康耐视(VP)")]
- [Localization(ResourceName = "CameraBrand_Cognex", ResourceType = typeof(Lang))]
- Cognex = 3,
- /// <summary>
- /// 大恒相机
- /// </summary>
- [Description("大恒相机(Galaxy)")]
- [Localization(ResourceName = "CameraBrand_Galaxy", ResourceType = typeof(Lang))]
- Galaxy = 4
- }
- }
|