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