IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Flag indicating whether the IPO thread feature is currently active or not.
If the IPO thread is enabled, the IPO thread is acquired for each running image acquisition. The IPO thread is active as long as it is acquired by at least one image acquisition.
Name |
IPOThreadActive |
Category |
|
Interface |
Boolean |
Access |
Read |
Unit |
- |
Visibility |
Guru |
Values |
True False |
Standard |
IDS |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•True: The IPO thread is enabled.
•False: The IPO thread is disabled.
Code example
C++
// Determine the current status of IPOThreadActive
bool value = nodeMapSystem->FindNode<peak::core::nodes::BooleanNode>("IPOThreadActive")->Value();
C#
// Determine the current status of IPOThreadActive
bool value = nodeMapSystem.FindNode<peak.core.nodes.BooleanNode>("IPOThreadActive").Value();
Python
# Determine the current status of IPOThreadActive (bool)
value = nodeMapSystem.FindNode("IPOThreadActive").Value()