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 noise reduction in the image.
Name |
NoiseReduction |
Category |
|
Interface |
Float |
Access |
Read/Write |
Unit |
% |
Visibility |
Beginner |
Values |
0 … 100 Default value: 50 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•0: Noise reduction is disabled.
•1 ... 100: Noise reduction is enabled. The higher the value, the higher the noise reduction.
Code example
C++
// Determine the current NoiseReduction
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("NoiseReduction")->Value();
// Set NoiseReduction to 65
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("NoiseReduction")->SetValue(65);
C#
// Determine the current NoiseReduction
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("NoiseReduction").Value();
// Set NoiseReduction to 65
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("NoiseReduction").SetValue(65);
Python
# Determine the current NoiseReduction (int)
value = nodeMapRemoteDevice.FindNode("NoiseReduction").Value()
# Set NoiseReduction to 65 (int)
nodeMapRemoteDevice.FindNode("NoiseReduction").SetValue(65)