How to save multiple dicom images in to a single mat file?
Afficher commentaires plus anciens
I have 100 MRI images in dicom format. How can I save all of them in a single .mat file? Thank you in advance.
Réponses (2)
yanqi liu
le 25 Mar 2022
fd = fullfile(pwd, 'dcms');
fs = ls(fullfile(fd, '*.dcm'));
ims = [];
for i = 1 : size(fs,1)
im = dicomread(fullfile(fd, strtrim(fs(i,:))));
ims{i} = im;
end
save ims.mat ims
3 commentaires
Shourya
le 28 Mar 2022
Bhagavathula Meena
le 24 Sep 2022
Yes am also facing same problem related to my work .
Rupika Raj
le 26 Sep 2022
Hi, I made some changes in Yanqi Liu's answer. Try this!
fd = fullfile(pwd);
fs = ls(fullfile(fd, '*.dcm'));
ims = [];
for i = 1 : size(fs,1)
im = dicomread(fullfile(fd, strtrim(fs(i,:))));
ims(:,:,i) = im;
end
save ims.mat ims
Catégories
En savoir plus sur Convert Image Type dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!