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.
uEye cameras: This feature is only supported by UI-1007XS Rev. 1.1 and UI-1007XS. |
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)