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
{
///
/// 海康相机
///
[Description("海康相机(MVS)")]
HikRobot_MVS = 0,
///
/// 巴斯勒相机
///
[Description("巴斯勒相机(Pylon)")]
Basler_Pylon = 1,
}
public enum TriggerSource
{
///
/// 软触发
///
[Description("软触发")]
Software,
///
/// 线路0
///
[Description("线路0")]
Line0,
///
/// 线路1
///
[Description("线路1")]
Line1,
///
/// 线路2
///
[Description("线路2")]
Line2,
///
/// 线路3
///
[Description("线路3")]
Line3,
}
public enum TriggerPolarity
{
RisingEdge,
FallingEdge
}
}