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