Please enable JavaScript to view this site.

IDS peak 2.10.0 / uEye+ firmware 3.34

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

Specifies the size of a stream packet that is sent by the camera.

Name

DeviceStreamChannelPacketSize

Category

DeviceControl

Interface

Integer

Access

Read/Write

Unit

B

Visibility

Expert

Values

> 0

Standard

SFNC

Availability uEye+

icon-gev

Availability uEye

-

hint_info

The access changes to read-only during an acquisition.

Code example

C++

// Determine the current DeviceStreamChannelPacketSize
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("DeviceStreamChannelPacketSize")->Value();
// Set DeviceStreamChannelPacketSize to 1500 B
nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("DeviceStreamChannelPacketSize")->SetValue(1500);

C#

// Determine the current DeviceStreamChannelPacketSize
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("DeviceStreamChannelPacketSize").Value();
// Set DeviceStreamChannelPacketSize to 1500 B
nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("DeviceStreamChannelPacketSize").SetValue(1500);

Python

# Determine the current DeviceStreamChannelPacketSize (int)
value = nodeMapRemoteDevice.FindNode("DeviceStreamChannelPacketSize").Value()
# Set DeviceStreamChannelPacketSize to 1500 B (int)
nodeMapRemoteDevice.FindNode("DeviceStreamChannelPacketSize").SetValue(1500)

© 2024 IDS Imaging Development Systems GmbH