IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
This feature is only supported by specific uEye+ cameras.
•U3-36LxXC
Controls the brightness of the image.
Name |
Brightness |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
- |
Visibility |
Beginner |
Values |
-1 … 1 Default value: 0 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•The image darkens for values smaller than 0.
•The image brightens for values greater than 0.
Code example
C++
// Determine the current Brightness
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Brightness")->Value();
// Set Brightness to 0.25
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Brightness")->SetValue(0.25);
C#
// Determine the current Brightness
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Brightness").Value();
// Set Brightness to 0.25
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Brightness").SetValue(0.25);
Python
# Determine the current Brightness (int)
value = nodeMapRemoteDevice.FindNode("Brightness").Value()
# Set Brightness to 0.25 (int)
nodeMapRemoteDevice.FindNode("Brightness").SetValue(0.25)