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/05/11, 10am 雷心博士

机器人通常以合作者的身份出现,以礼貌、鼓励、友好的方式与人类互动,但如果有一个竞争导向的机器人出现会如何?人们更喜欢与合作导向的机器人互动,还是更愿意通过竞争来激发自身动力呢?当我们与机器人合作或竞争
Wanling Zhu
13 sec read

第五十期fNIRS Journal Club视频 王一晖

Youtube: https://youtu.be/a2QlCFZUytA优酷:https://v.youku.com/v_show/id_XNjM3MjMyNjUxMg==.html 早期的 STE
Wanling Zhu
13 sec read

第五十期fNIRS Journal Club通知2024/03/30, 10am 王一晖

早期的 STEM 教育对于以后的学习至关重要。现有研究尚未就STEM教学法达成共识,学生先验知识对基于故事的STEM教学法的影响还有待探讨。来自澳门大学张娟教授团队的王一晖将会分享基于fNIRS超扫描
Wanling Zhu
9 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 *