Saving imshow() image as frames in one .tiff file
    5 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
Please, help me with saving frames in .tiff file.
Here is my code:
nframe = 5;
nrow = 128;
ncol = 128;
clearvars A;
A(1:nrow, 1:ncol) = 0;
A = uint16(A);
for frame = 1:nframe
    tic;
    for row = 1:nrow
        for col = 1:ncol
            A(row, col) = fix(rand * 10);
        end
        imshow(A, 'DisplayRange',[0 10]);
        hold on;
        %drawnow;
        pause(0.001);
    end
    stt = toc;
% here is a place for saving frames (imshow) in one tiff file   
end
0 commentaires
Réponses (1)
  Joachim Schlosser
    
 le 1 Avr 2016
        2 commentaires
  Joachim Schlosser
    
 le 4 Avr 2016
				getframe itself does not yet save any file, it just gets the frame.
See https://www.mathworks.com/matlabcentral/answers/94582-does-matlab-support-writing-multipage-tiff-files on how to save as TIFF.
Voir également
Catégories
				En savoir plus sur Convert Image Type dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!