Overlay timestamps on many figures
Show older comments
I have 400 images like the following one:

I want to superimpose timestamps on the top left or the top right of each figure, so I will have 400 timestamps in total. Each timestamp contains hours, minutes and seconds ('HHMMSS').
For Image1 => Timestamp1 ... Image400 => Timestamp400.
I tried to use the following code:
for i = 1:400
startDate = datenum('02-Nov-2013 13:30:06');
endDate = datenum('02-Nov-2013 13:30:51');
xdate = linspace(startDate,endDate,400);
... code to generate image
set(gca,'XTick',xdate);
datetick('x','HHMMSS');
end
But it became obvious that it didn't works, because I get the timestamps along an x axis, and I want a single timestamp for each image up to 400 images. Anyone has any clue how to do that?
Answers (0)
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!