IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Controls the intensity of the sensor's integrated noise filter.
A high value of Scan3dNoiseFilter reduces noisy pixels, but also causes slight blurring of details, depending on the value set. This function affects all components (ComponentSelector "Range," "Confidence", and "Intensity").
Name |
Scan3dNoiseFilter |
Category |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
- |
Visibility |
Expert |
Values |
0 ... 255 Increment: 1 |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current Scan3dNoiseFilter
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Scan3dNoiseFilter")->Value();
// Set Scan3dNoiseFilter to 10
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Scan3dNoiseFilter")->SetValue(10);
C#
// Determine the current Scan3dNoiseFilter
long value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("Scan3dNoiseFilter").Value();
// Set Scan3dNoiseFilter to 10
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("Scan3dNoiseFilter").SetValue(10);
Python
# Determine the current Scan3dNoiseFilter (int)
value = nodeMapRemoteDevice.FindNode("Scan3dNoiseFilter").Value()
# Set Scan3dNoiseFilter to 10 (int)
nodeMapRemoteDevice.FindNode("Scan3dNoiseFilter").SetValue(10)