Please enable JavaScript to view this site.

IDS peak 2.15.0 / uEye+ firmware 3.54

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

BufferHandlingControl

Interface

Boolean

Access

Read

Unit

-

Visibility

Expert

Values

True

False

Standard

GenTL SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

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

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()