IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
Enables the definition of a flag for non-valid values in the DataStream. Note that confidence output is an alternate recommended way to identify non-valid pixels. Using Scan3dInvalidDataValue may result in processing disadvantages due to special handling.
Name |
Scan3dInvalidDataFlag[Scan3dCoordinateSelector][Scan3dExtractionSelector] |
Category |
|
Interface |
Boolean |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
True |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: Scan3dInvalidDataValue specifies a specific non-valid value.
Code example
C++
// Before accessing Scan3dInvalidDataFlag, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("Scan3dCoordinateSelector")->SetCurrentEntry("CoordinateA");
// Determine the current status of Scan3dInvalidDataFlag
bool value = nodeMapRemoteDevice->FindNode<peak::core::nodes::BooleanNode>("Scan3dInvalidDataFlag")->Value();
C#
// Before accessing Scan3dInvalidDataFlag, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA");
// Determine the current status of Scan3dInvalidDataFlag
bool value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.BooleanNode>("Scan3dInvalidDataFlag").Value();
Python
# Before accessing Scan3dInvalidDataFlag, make sure Scan3dCoordinateSelector is set correctly
# Set Scan3dCoordinateSelector to "CoordinateA" (str)
nodeMapRemoteDevice.FindNode("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA")
# Determine the current status of Scan3dInvalidDataFlag (bool)
value = nodeMapRemoteDevice.FindNode("Scan3dInvalidDataFlag").Value()