210928-Matlab读取文件夹及.nii格式

自己时常花费较多时间用于寻找及回忆命令上,不应该,因此做些记录,更快的恢复记忆。

% read the whole files
patient_paths='patient_paths';
patient_names=dir(patient_paths);
for ii=3:length(patient_names)  % start from 3
    patient_name=patient_names(ii).name;
    patient_path=fullfile(patient_paths,patient_name);
% read the files end with '.nii'
patient_paths='patient_paths';
patient_names=dir([patient_paths, '/*.nii']);
for ii=1:length(patient_names)  % start from 1
    patient_name=patient_names(ii).name;
    patient_path=fullfile(patient_paths,patient_name);
上一篇:Li‘s 核磁共振影像数据处理-22-FSL常用工具命令介绍 fslutils


下一篇:python读写nii格式的数据