1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace LampInspectionMachine.Cameralibs
- {
- public enum CameraBrand
- {
- /// <summary>
- /// 海康相机
- /// </summary>
- [Description("海康相机(MVS)")]
- HikRobot_MVS = 0,
- /// <summary>
- /// 巴斯勒相机
- /// </summary>
- [Description("巴斯勒相机(Pylon)")]
- Basler_Pylon = 1,
- }
- public enum TriggerSource
- {
- /// <summary>
- /// 软触发
- /// </summary>
- [Description("软触发")]
- Software,
- /// <summary>
- /// 线路0
- /// </summary>
- [Description("线路0")]
- Line0,
- /// <summary>
- /// 线路1
- /// </summary>
- [Description("线路1")]
- Line1,
- /// <summary>
- /// 线路2
- /// </summary>
- [Description("线路2")]
- Line2,
- /// <summary>
- /// 线路3
- /// </summary>
- [Description("线路3")]
- Line3,
- }
- public enum TriggerPolarity
- {
- RisingEdge,
- FallingEdge
- }
- }
|