How to create a single .mat file from multiple images?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
Assume that I have 5 images as following: 1.bmp, 2.bmp, 3.bmp, 4.bmp, 5.bmp. I want to combine those 5 images into a single .mat file. Anyone knows how to solve this issue, please help me!!
Thanks in advance!!
2 件のコメント
naila
2013 年 8 月 1 日
Hi I have the same problem with images: 01.dcm, 02.dcm, 03.dcm ... 22.dcm;
%d isn't working for 01.dcm. what should I do Please
採用された回答
Azzi Abdelmalek
2012 年 10 月 5 日
編集済み: Azzi Abdelmalek
2012 年 10 月 5 日
for k=1:5
h{k}=imread(sprintf('%d.bmp',k));
end
save file h
7 件のコメント
Jan
2013 年 8 月 1 日
編集済み: Jan
2013 年 8 月 1 日
@Le: Please be careful with the exclamation marks. The have a lot of power in English, e.g. much more than in German.
Your solution looks fine and efficient. Disk access like imread has the benefit, that it is such slow, that improvements in other parts of the code are usually not significant.
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!