IDS Peak comfortSDK, genericSDK, AFL, ICL, and IPL developer manuals are external documents.
Please contact us if you need these manuals.
This feature allows to set a camera in test mode and to output a specific payload format for validation of data streaming. This feature is intended for test purposes only. The data can be real acquired data or any test pattern.
Name |
TestPayloadFormatMode |
Category |
|
Interface |
Enumeration |
Access |
Read |
Unit |
- |
Visibility |
Guru |
Values |
MultiPart Off |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Values description
•MultiPart: The camera transfers the data in multi-part payload format with at least one part per payload. This option is only available if the camera supports the multi-part payload format.
•Off: Test mode is disabled. This feature has no effect and the camera is streaming data normally according to its configuration. This option is the default after each boot of the camera.
Code example
C++
// Determine the current entry of TestPayloadFormatMode
std::string value = nodeMapRemoteDevice->FindNode<peak::core::nodes::EnumerationNode>("TestPayloadFormatMode")->CurrentEntry()->SymbolicValue();
C#
// Determine the current entry of TestPayloadFormatMode
string value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.EnumerationNode>("TestPayloadFormatMode").CurrentEntry().SymbolicValue();
Python
# Determine the current entry of TestPayloadFormatMode (str)
value = nodeMapRemoteDevice.FindNode("TestPayloadFormatMode").CurrentEntry().SymbolicValue()