IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Tolerance for BrightnessAutoTarget. Defines an acceptance interval that surrounds BrightnessAutoTarget. If the brightness auto algorithm reaches a value within this acceptance interval, the algorithm has converged.
Name |
BrightnessAutoTargetTolerance |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
8-bit: 1 ... 32, increment: 1 10-bit: 4 ... 128, increment: 4 12-bit: 16 ... 512, increment: 16 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
The possible values depend on the selected PixelFormat.
Code example
C++
// Determine the current BrightnessAutoTargetTolerance
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("BrightnessAutoTargetTolerance")->Value();
// Set BrightnessAutoTargetTolerance to 3
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("BrightnessAutoTargetTolerance")->SetValue(3);
C#
// Determine the current BrightnessAutoTargetTolerance
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("BrightnessAutoTargetTolerance").Value();
// Set BrightnessAutoTargetTolerance to 3
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("BrightnessAutoTargetTolerance").SetValue(3);
Python
# Determine the current BrightnessAutoTargetTolerance (int)
value = nodeMapRemoteDevice.FindNode("BrightnessAutoTargetTolerance").Value()
# Set BrightnessAutoTargetTolerance to 3 (int)
nodeMapRemoteDevice.FindNode("BrightnessAutoTargetTolerance").SetValue(3)