Converting DICOM files to Analyze file in batch mode

23 sec read

I use SPM’s dicom import function to convert DICOM files to Analyze files. But it’s quite inconvenient if I have 20 subjects. Below is a script to do this conversion automatically. You can call this function inside a loop.

function dicom2img(files)
% function dicom2img(files)
%
% This function is to convert dicom files to Analyze image files using SPM
% script
%
% files (optional): list of dicom files
%
% Xu Cui
%

if(nargin < 1)
    if findstr('SPM2',spm('ver'))
        files = spm_get('files', pwd, '*.dcm');
    else
        files = spm_select('list', pwd, '\.dcm');
    end
end

spm_defaults; 
hdr = spm_dicom_headers(files);
spm_dicom_convert(hdr);
display('done!')
return;



写作助手,把中式英语变成专业英文


Want to receive new post notification? 有新文章通知我

第五十六期fNIRS Journal Club通知2024/09/28, 10am 李开云副教授

孤独症谱系障碍(Autism Spectrum Disorder, ASD)是一种复杂的神经发育障碍,其核心特征包括社交沟通障碍、重复刻板行为和限制性兴趣。济南大学教育与心理科学学院李开云博士借助fN
Wanling Zhu
21 sec read

第五十五期fNIRS Journal Club视频 张迎伟博士

Youtube: https://youtu.be/V5eNKNgGOoU 优酷:https://v.youku.com/v_show/id_XNjQxNzU0Mjc0NA==.html 遗忘型轻度认
Wanling Zhu
16 sec read

第五十五期fNIRS Journal Club通知2024/08/24, 10am 张迎伟博士

遗忘型轻度认知障碍(aMCI) 的辅助评估和早期诊断对于防止老年痴呆至关重要。来自中科院计算技术研究所的张迎伟博士将分享 fNIRS 表征和尺度多模态融合方法在aMCI辅助诊断方面的研究。欢迎大家踊跃
Wanling Zhu
12 sec read

8 Replies to “Converting DICOM files to Analyze file in batch mode”

  1. Thanks for the code.I am using SPM5 and it does not have the function name spm_get.But I have replaced the function spm_get with spm_get_data.I have also passed the value of variable ‘files’.But still I am not getting the result.To access the files I have used following code:

    owd=input(‘Enter the path of RAW images:\n’);
    dirdata=dir(owd);
    dirIndex=[dirdata.isdir];
    files={dirdata(~dirIndex).name}’

    Kindly provide me the code and help
    Thanks

  2. The program runs and gives me error “Cant yet convert Phillips Intera DICOM”..This error is generated from spm_dicom_convert.m file.I do not understand why I am getting this message and how to remove it.

  3. The above code worked with some changes.Now in my code i need to direct the analysis files to another directory.I need it to be done inside the code.Please help me with it.
    Thanks

  4. Dear Xu!

    I am using spm8 and trying to batch the dicom import.
    Do you know how I can search also the subdirectories of the DICOM folder?

    So far,I cd to the DICOM folder and use
    [files,dirs]=cfg_getfile(‘list’, pwd, ‘.’);
    and get the subdirectories only.

    Thank you! Dorothea

Leave a Reply to Rohan Cancel reply

Your email address will not be published. Required fields are marked *