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 |
|
Interface |
Integer |
Access |
Read/Write |
Unit |
B |
Visibility |
Expert |
Values |
> 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
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)