IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Loads the parameter set of a uEye camera from an ini file. The path to the ini file is specified in uEyeParametersetPath.
Name |
UEyeParametersetLoad |
Category |
|
Interface |
Command |
Access |
Write |
Unit |
- |
Visibility |
Beginner |
Values |
- |
Standard |
IDS |
Availability uEye+ |
- |
Availability uEye |
|
Code example
C++
// Execute UEyeParametersetLoad
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("UEyeParametersetLoad")->Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice->FindNode<peak::core::nodes::CommandNode>("UEyeParametersetLoad")->WaitUntilDone();
C#
// Execute UEyeParametersetLoad
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("UEyeParametersetLoad").Execute();
// Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode<peak.core.nodes.CommandNode>("UEyeParametersetLoad").WaitUntilDone();
Python
# Execute UEyeParametersetLoad
nodeMapRemoteDevice.FindNode("UEyeParametersetLoad").Execute()
# Check if the command has finished before you continue (optional)
nodeMapRemoteDevice.FindNode("UEyeParametersetLoad").WaitUntilDone()