IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Minimum limit of gain when GainAuto is enabled and BrightnessAutoGainLimitMode is "On".
|
It is recommended to keep BrightnessAutoGainMin on its minimum value. |
Name |
BrightnessAutoGainMin |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
≥ 1 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
|
uEye cameras: This feature is only supported by UI-1007XS Rev. 1.1 and UI-1007XS. |
Code example
C++
// Before accessing BrightnessAutoGainMin, make sure BrightnessAutoGainLimitMode is set correctly
// Set BrightnessAutoGainLimitMode to "On"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("BrightnessAutoGainLimitMode")->SetCurrentEntry("On");
// Determine the current BrightnessAutoGainMin
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("BrightnessAutoGainMin")->Value();
// Set BrightnessAutoGainMin to 1.0
nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("BrightnessAutoGainMin")->SetValue(1.0);
C#
// Before accessing BrightnessAutoGainMin, make sure BrightnessAutoGainLimitMode is set correctly
// Set BrightnessAutoGainLimitMode to "On"
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("BrightnessAutoGainLimitMode").SetCurrentEntry("On");
// Determine the current BrightnessAutoGainMin
double value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("BrightnessAutoGainMin").Value();
// Set BrightnessAutoGainMin to 1.0
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("BrightnessAutoGainMin").SetValue(1.0);
Python
# Before accessing BrightnessAutoGainMin, make sure BrightnessAutoGainLimitMode is set correctly
# Set BrightnessAutoGainLimitMode to "On" (str)
nodeMapRemoteDevice.FindNode("BrightnessAutoGainLimitMode").SetCurrentEntry("On")
# Determine the current BrightnessAutoGainMin (float)
value = nodeMapRemoteDevice.FindNode("BrightnessAutoGainMin").Value()
# Set BrightnessAutoGainMin to 1.0 (float)
nodeMapRemoteDevice.FindNode("BrightnessAutoGainMin").SetValue(1.0)