From: Vince Rolin on
Hello, I'm relatively new to matlab and have been given the following task:
There is a set of images, each image has a corresponding timestamp and depth (at which it was taken.) Design a code which will produce a movie displaying the images frame by frame as well as displaying the corresponding data with each frame.
Please help me to design this code, at least by giving me references to look into, I have no idea where to start
From: Walter Roberson on
Vince Rolin wrote:
> Hello, I'm relatively new to matlab and have been given the following
> task: There is a set of images, each image has a corresponding timestamp
> and depth (at which it was taken.) Design a code which will produce a
> movie displaying the images frame by frame as well as displaying the
> corresponding data with each frame.
> Please help me to design this code, at least by giving me references to
> look into, I have no idea where to start

http://matlabwiki.mathworks.com/MATLAB_FAQ#How_can_I_process_a_sequence_of_files.3F

then

[junk, sortorder] = sort(timestamps);
for IMnum = sortorder
APPEND image INDEXED BY IMnum TO movie RESULTING IN movie;
end