Returns the current value of the device's timestamp counter. The same timestamp counter is used for tagging images, chunk data, and event data.
Note that the increment of the timestamp feature must correspond to the resolution of the device timestamp in nanoseconds.
Name |
Timestamp |
Category |
|
Interface |
Integer |
Access |
Read |
Unit |
ns |
Visibility |
Expert |
Values |
≥ 0 |
Standard |
SFNC |
Availability uEye+ |
|
Availability uEye |
- |
Code example
C++
// Determine the current Timestamp
int64_t value = nodeMapRemoteDevice->FindNode<peak::core::nodes::IntegerNode>("Timestamp")->Value();
C#
// Determine the current Timestamp
long value = nodeMapRemoteDevice.FindNode<IDSImaging.Peak.API.Core.Nodes.IntegerNode>("Timestamp").Value();
Python
# Determine the current Timestamp (int)
value = nodeMapRemoteDevice.FindNode("Timestamp").Value()