CaptureImage.timestamp Property¶
Module: CaptureImage
Type: long
Definition¶
Records the capture time of the image, typically represented as a timestamp relative to a fixed point in time (e.g., Unix epoch).
This metadata is crucial for synchronizing images with other time-based data streams or for organizing images chronologically in time-series analyses.
int get timestamp => getTimestamp();
set timestamp(int value) => setTimestamp(value);
Exceptions
An error has occurred during Devices Library execution.
public long timestamp
{
get => Gettimestamp();
set => Settimestamp(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public long getTimestamp() throws DevicesException
public void setTimestamp(long timestamp) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesCaptureImage_GetTimestamp (ID3_DEVICES_CAPTURE_IMAGE hCaptureImage, long long * timestamp)
int id3DevicesCaptureImage_SetTimestamp (ID3_DEVICES_CAPTURE_IMAGE hCaptureImage, long long timestamp)
Returns