Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

Path to the ini file containing the parameter set of the uEye camera to be loaded or saved. The path to the ini file must be specified as a Unicode string. It can be specified both relatively and absolutely.

Name

UEyeParametersetPath

Category

UEyeParametersetControl

Interface

String

Access

Read/Write

Unit

-

Visibility

Beginner

Values

-

Standard

IDS

Availability uEye+

-

Availability uEye

icon-ui-gige icon-ui-usb2 icon-ui-usb3

Code example

C++

// Determine the current UEyeParametersetPath
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::StringNode>("UEyeParametersetPath")->Value();
// Set UEyeParametersetPath to "C:/settings/MyCamera"
nodeMapRemoteDevice->FindNode<peak::core::nodes::StringNode>("UEyeParametersetPath")->SetValue("C:/settings/MyCamera");

C#

// Determine the current UEyeParametersetPath
string value = nodeMapRemoteDevice.FindNode<peak.core.nodes.StringNode>("UEyeParametersetPath").Value();
// Set UEyeParametersetPath to "C:/settings/MyCamera"
nodeMapRemoteDevice.FindNode<peak.core.nodes.StringNode>("UEyeParametersetPath").SetValue("C:/settings/MyCamera");

Python

# Determine the current UEyeParametersetPath (str)
value = nodeMapRemoteDevice.FindNode("UEyeParametersetPath").Value()
# Set UEyeParametersetPath to "C:/settings/MyCamera" (str)
nodeMapRemoteDevice.FindNode("UEyeParametersetPath").SetValue("C:/settings/MyCamera")