Please enable JavaScript to view this site.

IDS peak 2.20.0 / uEye+ firmware 3.80

IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.

Returns the device unique ID for the stream. Corresponds to the "DevGetDataStreamID" function with the index corresponding to StreamSelector.

Name

StreamID[StreamSelector]

Category

StreamEnumeration

Interface

String

Access

Read

Unit

-

Visibility

Beginner

Values

-

Standard

GenTL SFNC

Availability uEye+

icon-gev icon-u3v

Availability uEye

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

Code Example

C++

// Before accessing StreamID, make sure StreamSelector is set correctly
// Set StreamSelector to 0
nodeMapLocalDevice->FindNode<peak::core::nodes::IntegerNode>("StreamSelector")->SetValue(0);
// Determine the current StreamID
std::string value = nodeMapLocalDevice->FindNode<peak::core::nodes::StringNode>("StreamID")->Value();

C#

// Before accessing StreamID, make sure StreamSelector is set correctly
// Set StreamSelector to 0
nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("StreamSelector").SetValue(0);
// Determine the current StreamID
string value = nodeMapLocalDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.StringNode>("StreamID").Value();

Python

# Before accessing StreamID, make sure StreamSelector is set correctly
# Set StreamSelector to 0 (int)
nodeMapLocalDevice.FindNode("StreamSelector").SetValue(0)
# Determine the current StreamID (str)
value = nodeMapLocalDevice.FindNode("StreamID").Value()

© 2026 IDS Imaging Development Systems GmbH