Пример #1
0
 public void SetVideoValues(AlliedVisionPixelFormat format)
 {
     SetDefaultValues(format);
     this.m_Camera.Features["Height"].IntValue  = 972;
     this.m_Camera.Features["Width"].IntValue   = 1296;
     this.m_Camera.Features["OffsetX"].IntValue = 648;
     this.m_Camera.Features["OffsetY"].IntValue = 486;
 }
Пример #2
0
 public void SetPhotoValues(AlliedVisionPixelFormat format)
 {
     SetDefaultValues(format);
     this.m_Camera.Features["OffsetX"].IntValue = 0;
     this.m_Camera.Features["OffsetY"].IntValue = 0;
     this.m_Camera.Features["Height"].IntValue  = 1944;
     this.m_Camera.Features["Width"].IntValue   = 2592;
 }
Пример #3
0
 private void SetDefaultValues(AlliedVisionPixelFormat format)
 {
     this.m_Camera.Features["PixelFormat"].EnumValue   = format.ToString();
     this.m_Camera.Features["ExposureTime"].FloatValue = 5000.0;
     this.m_Camera.Features["Gain"].FloatValue         = 24;
 }