.nii to .mat

49 次查看(过去 30 天)
João Mendes
João Mendes 2019-6-10
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

采纳的回答

Walter Roberson
Walter Roberson 2020-9-9
niftiread() from R2017b.
There were File Exchange or Third Party contributions for reading nifti images before R2017b.

更多回答(1 个)

weipeng yang
weipeng yang 2021-3-10
编辑:Walter Roberson 2021-3-10
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 个评论
Walter Roberson
Walter Roberson 2021-3-10
Why do you load() back on top of what you just save()'d ?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by