Please enable JavaScript to view this site.

IDS peak 2.8.0 / uEye+ firmware 3.33

Enables or disables the IPO thread feature.

Name

IPOThreadEnabled

Category

SystemControl

Interface

Boolean

Access

Read/Write

Unit

-

Visibility

Guru

Values

True

False

Standard

IDS

Availability uEye+

icon-u3v

Availability uEye

-

Values description

True: Enables the IPO thread feature.

False: Disables the IPO thread feature (default setting).

Code example

C++

// Determine the current status of IPOThreadEnabled
bool value = nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("IPOThreadEnabled")->Value();
// Set IPOThreadEnabled to false
nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("IPOThreadEnabled")->SetValue(false);

C#

// Determine the current status of IPOThreadEnabled
bool value = nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("IPOThreadEnabled").Value();
// Set IPOThreadEnabled to false
nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("IPOThreadEnabled").SetValue(false);

Python

# Determine the current status of IPOThreadEnabled (bool)
value = nodeMapSystem.FindNode("IPOThreadEnabled").Value()
# Set IPOThreadEnabled to false (bool)
nodeMapSystem.FindNode("IPOThreadEnabled").SetValue(False)

© 2024 IDS Imaging Development Systems GmbH