| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Security.AccessControl;
- 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,
- /// <summary>
- /// OPT相机
- /// </summary>
- [Description("奥普特(OPT Camera Viewer)")]
- [Localization(ResourceName = "CameraBrand_opt", ResourceType = typeof(Lang))]
- Opt =5
- }
- }
|