IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Data value that identifies a non-valid pixel when Scan3dInvalidDataFlag is enabled.
Name |
Scan3dInvalidDataValue[Scan3dCoordinateSelector][Scan3dExtractionSelector] |
Category |
|
Interface |
Float |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Before accessing Scan3dInvalidDataValue, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("Scan3dCoordinateSelector")->SetCurrentEntry("CoordinateA");
// Determine the current Scan3dInvalidDataValue
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("Scan3dInvalidDataValue")->Value();
C#
// Before accessing Scan3dInvalidDataValue, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA");
// Determine the current Scan3dInvalidDataValue
double value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("Scan3dInvalidDataValue").Value();
Python
# Before accessing Scan3dInvalidDataValue, make sure Scan3dCoordinateSelector is set correctly
# Set Scan3dCoordinateSelector to "CoordinateA" (str)
nodeMapRemoteDevice.FindNode("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA")
# Determine the current Scan3dInvalidDataValue (float)
value = nodeMapRemoteDevice.FindNode("Scan3dInvalidDataValue").Value()