IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Provides the number of bytes transferred for each image on the stream channel. This includes all enabled chunks. It is the total size of data payload for a data block.
Name |
PayloadSize |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
B |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
|
Code example
C++
// Determine the current PayloadSize
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("PayloadSize")->Value();
C#
// Determine the current PayloadSize
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("PayloadSize").Value();
Python
# Determine the current PayloadSize (int)
value = nodeMapRemoteDevice.FindNode("PayloadSize").Value()