Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions interface/cuvis.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,10 @@ namespace cuvis
double gain;
/** the timestamp (UTC) of the image readout (senor's hardware clock )*/
timestamp_t readout_time;
/** width of buffer */
uint32_t width;
/** height of buffer */
uint32_t height;
};


Expand Down Expand Up @@ -2634,6 +2638,8 @@ namespace cuvis
temperature = info.temperature;
gain = info.gain;
readout_time = std::chrono::time_point<std::chrono::system_clock>(std::chrono::milliseconds(info.readout_time));
width = info.width;
height = info.height;
}


Expand Down