Prev: Slider min and max in GUIDE
Next: How to extract pixel values of a colored image into an array and then to convert the array into an image
From: Vince Rolin on 10 Jun 2010 16:38 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 10 Jun 2010 16:47
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 |