Returns the minimum valid transmitted coordinate value of the selected axis.
Invalid pixels are marked by setting these pixels to a value less than Scan3dAxisMin.
Name |
Scan3dAxisMin[Scan3dCoordinateSelector][Scan3dExtractionSelector] |
Category |
|
Interface |
Float |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
1 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Before accessing Scan3dAxisMin, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("Scan3dCoordinateSelector")->SetCurrentEntry("CoordinateA");
// Determine the current Scan3dAxisMin
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("Scan3dAxisMin")->Value();
C#
// Before accessing Scan3dAxisMin, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA");
// Determine the current Scan3dAxisMin
double value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("Scan3dAxisMin").Value();
Python
# Before accessing Scan3dAxisMin, make sure Scan3dCoordinateSelector is set correctly
# Set Scan3dCoordinateSelector to "CoordinateA" (str)
nodeMapRemoteDevice.FindNode("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA")
# Determine the current Scan3dAxisMin (float)
value = nodeMapRemoteDevice.FindNode("Scan3dAxisMin").Value()