IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
Returns the timestamp of the image included in the payload. The timestamp represents the time of the FrameStart (ExposureStart) internal event.
Name |
ChunkTimestamp |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
ns |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
The availability of ChunkTimestamp depends on the sensor. For some cameras, the timestamp can only be returned when the "ExposureStart" trigger is enabled. Otherwise it returns 0. |
Code example
C++
// Determine the current ChunkTimestamp
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("ChunkTimestamp")->Value();
C#
// Determine the current ChunkTimestamp
long value = nodeMapRemoteDevice.FindNode<peak.core.nodes.IntegerNode>("ChunkTimestamp").Value();
Python
# Determine the current ChunkTimestamp (int)
value = nodeMapRemoteDevice.FindNode("ChunkTimestamp").Value()