IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Minimum limit of ExposureTime when ExposureMode is "TriggerControlled". When a trigger on "ExposureEnd" is active but is received too early, the exposure of the image is stopped after TriggerControlledExposureTimeMin. For sensors with overlapping image acquisition, the overlap of the images is limited by TriggerControlledExposureTimeMin.
Name |
TriggerControlledExposureTimeMin |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
µs |
Visibility |
Guru |
Values |
Camera specific |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current TriggerControlledExposureTimeMin
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("TriggerControlledExposureTimeMin")->Value();
// Set TriggerControlledExposureTimeMin to 10.8 us
nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("TriggerControlledExposureTimeMin")->SetValue(10.8);
C#
// Determine the current TriggerControlledExposureTimeMin
double value = nodeMapRemoteDevice.FindNode<peak.core.nodes.FloatNode>("TriggerControlledExposureTimeMin").Value();
// Set TriggerControlledExposureTimeMin to 10.8 us
nodeMapRemoteDevice.FindNode<peak.core.nodes.FloatNode>("TriggerControlledExposureTimeMin").SetValue(10.8);
Python
# Determine the current TriggerControlledExposureTimeMin (float)
value = nodeMapRemoteDevice.FindNode("TriggerControlledExposureTimeMin").Value()
# Set TriggerControlledExposureTimeMin to 10.8 us (float)
nodeMapRemoteDevice.FindNode("TriggerControlledExposureTimeMin").SetValue(10.8)