Saving imshow() image as frames in one .tiff file

2 ビュー (過去 30 日間)
Sergey Makovkin
Sergey Makovkin 2016 年 4 月 1 日
コメント済み: Joachim Schlosser 2016 年 4 月 4 日
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

回答 (1 件)

Joachim Schlosser
Joachim Schlosser 2016 年 4 月 1 日
  2 件のコメント
Sergey Makovkin
Sergey Makovkin 2016 年 4 月 1 日
As I understand getframe() can only capture the current image (or the part of image). But how can I save my frames in multislice .tiff file?
Joachim Schlosser
Joachim Schlosser 2016 年 4 月 4 日
getframe itself does not yet save any file, it just gets the frame.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by