.nii to .mat
18 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
João Mendes
el 10 de Jun. de 2019
Comentada: Walter Roberson
el 10 de Mzo. de 2021
Hey guys, I was wondering if you could help me out.
I'm having some problems opening medical images in MATLAB.
Their extension is .nii and I need them to be .m ; is there any simple form to do the conversion?
Thanks
JM
1 comentario
Respuesta aceptada
Walter Roberson
el 9 de Sept. de 2020
niftiread() from R2017b.
There were File Exchange or Third Party contributions for reading nifti images before R2017b.
0 comentarios
Más respuestas (1)
weipeng yang
el 10 de Mzo. de 2021
Editada: Walter Roberson
el 10 de Mzo. de 2021
clc;
clear all;
file = dir('*.nii');
len = length(file);
for i = 1:len
nii_file = file(i).name;
nii = load_nii(nii_file);
img = nii.img;
mat_name = strcat('img_', int2str(i), '.mat');
save(mat_name);
load(mat_name);
figure(1)
subplot(4,5,i), imshow(img(:,:,1),[]), title(i)
end
1 comentario
Ver también
Categorías
Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!