How to create a single .mat file from multiple images?

조회 수: 5 (최근 30일)
Le Nguyen
Le Nguyen 2012년 10월 5일
댓글: Shourya 2022년 1월 19일
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
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
Azzi Abdelmalek 2013년 8월 1일
What is the error message?

댓글을 달려면 로그인하십시오.

채택된 답변

Azzi Abdelmalek
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
Le Nguyen
Le Nguyen 2012년 10월 6일
Hi all,
After taking a look around Matlab for a while, I seem to know how to solve this issue!! You are right, Matt J!! My bitmap files are all 3D as well as colourful!! That's why Matt Kindig's solution didnt work at all!! Here is my modification and it really works well!!
img = rgb2gray(imread('1.bmp'));
[r,c]= size(img);
h = NaN(r,c,5); %pre-allocate memory
h(:,:,1) = img;
for k=2:5
h(:,:,k) = rgb2gray(imread(sprintf('%d.bmp',k)));
end
save filename h
I am totally a newbie to Matlab, thus, all of your suggestions are always helpful to me and I am really in debt of it!!
Again, thanks a lot!! :)
PS: if there are any modifications for better performance as well as optimization, please let me know!!
Jan
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.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

mona
mona 2017년 2월 3일
how to deal with images in a single .mat file?
  댓글 수: 1
Shourya
Shourya 2022년 1월 19일
Hi,
Have you figured out how to display multiple images stored in a single .mat file? Please help.

댓글을 달려면 로그인하십시오.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by