22 lines
761 B
C#
22 lines
761 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Inspectron.HawkEye.Protocol
|
|
{
|
|
public class CameraSettings
|
|
{
|
|
public ImageSettings ImageSettings { get; set; }
|
|
public int LightPwm1 { get; set; }
|
|
public int LightPwm2 { get; set; }
|
|
public string Name { get; set; }
|
|
public int OffsetX { get; set; }
|
|
public int ImageWidth { get; set; }
|
|
public int RescaleWidth { get; set; }
|
|
public int MinorCutoff { get; set; }
|
|
public bool BayerFilter { get; set; }
|
|
public bool LaserTrigger { get; set; }
|
|
public int LaserTriggerDelay { get; set; }
|
|
public bool FlipLines { get; set; }
|
|
public bool MirrorX { get; set; }
|
|
public bool TriggerLights { get; set; }
|
|
}
|
|
} |