How to save multiple dicom images in to a single mat file?

6 visualizaciones (últimos 30 días)
Shourya
Shourya el 24 de Mzo. de 2022
Respondida: Rupika Raj el 26 de Sept. de 2022
I have 100 MRI images in dicom format. How can I save all of them in a single .mat file? Thank you in advance.

Respuestas (2)

yanqi liu
yanqi liu el 25 de Mzo. de 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 comentarios
Shourya
Shourya el 28 de Mzo. de 2022
I got a mat file of size 1x100 where each cell represents an image . How can I get a matrix where each column represents an image?
Bhagavathula Meena
Bhagavathula Meena el 24 de Sept. de 2022
Yes am also facing same problem related to my work .

Iniciar sesión para comentar.


Rupika Raj
Rupika Raj el 26 de Sept. de 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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by