IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Flag indicating whether the acquisition engine is started or not. This is independent from the acquisition status of the RemoteDevice. Corresponds to the STREAM_INFO_IS_GRABBING command of "DSGetInfo" function.
Name |
StreamIsGrabbing |
Category |
|
Interface |
Boolean |
Access |
Read |
Unit |
- |
Visibility |
Expert |
Values |
True False |
Standard |
GenTL SFNC |
Availability uEye+ |
|
Availability uEye |
|
Values description
•True = Acquisition engine is started
•False = Acquisition engine is not started
Code Example
C++
// Determine the current status of StreamIsGrabbing
bool value = nodeMapDataStream->FindNode<peak::core::nodes::BooleanNode>("StreamIsGrabbing")->Value();
C#
// Determine the current status of StreamIsGrabbing
bool value = nodeMapDataStream.FindNode<peak.core.nodes.BooleanNode>("StreamIsGrabbing").Value();
Python
# Determine the current status of StreamIsGrabbing (bool)
value = nodeMapDataStream.FindNode("StreamIsGrabbing").Value()