Displaying a sequence of images like video in matlab

images is an array of dim imageHeight x imageWidth x frameNumber


for i = 1:size(images,3)
    imshow(images(:,:,i));
    title(['frame# ' num2str(i)]);
    drawnow; %// this is why it works
end


One Response to Displaying a sequence of images like video in matlab

  1. prapti says:

    hey how can v convert video to frmae…which algo 2 use??

Leave a comment