IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Enables or disables the limits for BrightnessAutoExposureTimeMin and BrightnessAutoExposureTimeMax. When ExposureAuto is active, the exposure time can vary within these limits.
Name |
BrightnessAutoExposureTimeLimitMode |
Category |
|
Interface |
Enumeration |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
Off On |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•Off: Disables BrightnessAutoExposureTimeMin and BrightnessAutoExposureTimeMax.
The range of the exposure time is only limited by sensor properties and AcquisitionFrameRate.
•On: Enables BrightnessAutoExposureTimeMin and BrightnessAutoExposureTimeMax.
The range of the exposure time is limited by BrightnessAutoExposureTimeMin and BrightnessAutoExposureTimeMax.
Code example
C++
// Determine the current entry of BrightnessAutoExposureTimeLimitMode
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("BrightnessAutoExposureTimeLimitMode")->CurrentEntry()->SymbolicValue();
// Get a list of all available entries of BrightnessAutoExposureTimeLimitMode
auto allEntries = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("BrightnessAutoExposureTimeLimitMode")->Entries();
std::vector<std::shared_ptr<peak::core::nodes::EnumerationEntryNode>> availableEntries;
for(const auto & entry : allEntries)
{
if ((entry->AccessStatus()!=peak::core::nodes::NodeAccessStatus::NotAvailable)
&& (entry->AccessStatus()!=peak::core::nodes::NodeAccessStatus::NotImplemented))
{
availableEntries.emplace_back(entry);
}
}
// Set BrightnessAutoExposureTimeLimitMode to "On"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("BrightnessAutoExposureTimeLimitMode")->SetCurrentEntry("On");
C#
// Determine the current entry of BrightnessAutoExposureTimeLimitMode
string value = nodeMapRemoteDevice.FindNode<peak.core.nodes.EnumerationNode>("BrightnessAutoExposureTimeLimitMode").CurrentEntry().SymbolicValue();
// Get a list of all available entries of BrightnessAutoExposureTimeLimitMode
allEntries = nodeMapRemoteDevice.FindNode<peak.core.nodes.EnumerationNode>("BrightnessAutoExposureTimeLimitMode").Entries();
List<string> availableEntries = new List<string>();
for(int i = 0; i < allEntries.Count(); ++i)
{
if ((allEntries[i].AccessStatus() != peak.core.nodes.NodeAccessStatus.NotAvailable)
&& (allEntries[i].AccessStatus() != peak.core.nodes.NodeAccessStatus.NotImplemented))
{
availableEntries.Add(allEntries[i].SymbolicValue());
}
}
// Set BrightnessAutoExposureTimeLimitMode to "On"
nodeMapRemoteDevice.FindNode<peak.core.nodes.EnumerationNode>("BrightnessAutoExposureTimeLimitMode").SetCurrentEntry("On");
Python
# Determine the current entry of BrightnessAutoExposureTimeLimitMode (str)
value = nodeMapRemoteDevice.FindNode("BrightnessAutoExposureTimeLimitMode").CurrentEntry().SymbolicValue()
# Get a list of all available entries of BrightnessAutoExposureTimeLimitMode
allEntries = nodeMapRemoteDevice.FindNode("BrightnessAutoExposureTimeLimitMode").Entries()
availableEntries = []
for entry in allEntries:
if (entry.AccessStatus() != ids_peak.NodeAccessStatus_NotAvailable
and entry.AccessStatus() != ids_peak.NodeAccessStatus_NotImplemented):
availableEntries.append(entry.SymbolicValue())
# Set BrightnessAutoExposureTimeLimitMode to "On" (str)
nodeMapRemoteDevice.FindNode("BrightnessAutoExposureTimeLimitMode").SetCurrentEntry("On")