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 is enabled or not for the current image acquisition.
The stream channel uses the IPO thread if the IPO thread was enabled via IPOThreadEnabled at the start of image acquisition. The IPO thread is active as long as it is used by at least one stream channel.
Name |
StreamChannelIPOThreadAcquired |
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 for the current image acquisition.
•False: The IPO thread is disabled for the current image acquisition.
Code example
C++
// Determine the current StreamChannelIPOThreadAcquired
int64_t value = nodeMapDataStream->FindNode<peak::core::nodes::IntegerNode>("StreamChannelIPOThreadAcquired")->Value();
C#
// Determine the current StreamChannelIPOThreadAcquired
long value = nodeMapDataStream.FindNode<peak.core.nodes.IntegerNode>("StreamChannelIPOThreadAcquired").Value();
Python
# Determine the current StreamChannelIPOThreadAcquired (int)
value = nodeMapDataStream.FindNode("StreamChannelIPOThreadAcquired").Value()