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 contrast in the image.
Name |
Contrast |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
- |
Visibility |
Beginner |
Values |
-5.46875 … 5.46875 Default value: 0 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•The image contrast decreases for values smaller than 0.
•The image contrast increases for values greater than 0.
Code example
C++
// Determine the current Contrast
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Contrast")->Value();
// Set Contrast to 1.5
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Contrast")->SetValue(1.5);
C#
// Determine the current Contrast
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Contrast").Value();
// Set Contrast to 1.5
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("Contrast").SetValue(1.5);
Python
# Determine the current Contrast (int)
value = nodeMapRemoteDevice.FindNode("Contrast").Value()
# Set Contrast to 1.5 (int)
nodeMapRemoteDevice.FindNode("Contrast").SetValue(1.5)