Please enable JavaScript to view this site.

IDS peak 26.06. / uEye+ firmware 3.94

Returns the maximum valid transmitted coordinate value of the selected axis.

Overexposed pixels are marked by setting them to a value greater than Scan3dAxisMax.

Name

Scan3dAxisMax[Scan3dCoordinateSelector][Scan3dExtractionSelector]

Category

Scan3dControl

Interface

Float

Access

Read

Unit

-

Visibility

Expert

Values

4094

Standard

SFNC

Availability uEye+

icon-gev

Availability uEye

-

Code example

C++

// Before accessing Scan3dAxisMax, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("Scan3dCoordinateSelector")->SetCurrentEntry("CoordinateA");
// Determine the current Scan3dAxisMax
double value = nodeMapRemoteDevice->FindNode<peak::core::nodes::FloatNode>("Scan3dAxisMax")->Value();

C#

// Before accessing Scan3dAxisMax, make sure Scan3dCoordinateSelector is set correctly
// Set Scan3dCoordinateSelector to "CoordinateA"
nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA");
// Determine the current Scan3dAxisMax
double value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.FloatNode>("Scan3dAxisMax").Value();

Python

# Before accessing Scan3dAxisMax, make sure Scan3dCoordinateSelector is set correctly
# Set Scan3dCoordinateSelector to "CoordinateA" (str)
nodeMapRemoteDevice.FindNode("Scan3dCoordinateSelector").SetCurrentEntry("CoordinateA")
# Determine the current Scan3dAxisMax (float)
value = nodeMapRemoteDevice.FindNode("Scan3dAxisMax").Value()