Overlay timestamps on many figures
조회 수: 1 (최근 30일)
이전 댓글 표시
I have 400 images like the following one:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/148418/image.jpeg)
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
Jan
2015년 3월 28일
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?
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!