Filter löschen
Filter löschen

Overlay timestamps on many figures

2 Ansichten (letzte 30 Tage)
Adrian
Adrian am 28 Mär. 2015
Kommentiert: Adrian am 30 Mär. 2015
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?
  2 Kommentare
Jan
Jan am 28 Mär. 2015
The contents of the loop does not depened on i. So what should be changed in each loop? Where shoudl teh time stamps appear? In the image file or on the screen only?
Adrian
Adrian am 30 Mär. 2015
The content of the loop that depends on i is within the code to generate the image. I didn't want to make the code harder to read, so I didn't add it. I just wanted the timestamp on the top left, right or center of the image. It doesn't really matter.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by