Diff for "DumpDemographics" - MRC CBU Imaging Wiki
location: Diff for "DumpDemographics"
Differences between revisions 1 and 2
Revision 1 as of 2009-12-11 12:47:09
Size: 913
Editor: RhodriCusack
Comment:
Revision 2 as of 2009-12-11 12:48:47
Size: 925
Editor: RhodriCusack
Comment:
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
        H=spm_dicom_headers(dicomfn);
        fprintf('%s\t%s\n',H{1}.PatientsSex,H{1}.PatientsAge);
Line 19: Line 21:
    H=spm_dicom_headers(dicomfn);
    fprintf('%s\t%s\n',H{1}.PatientsSex,H{1}.PatientsAge);
    
Line 23: Line 22:
        

Dump demographics

Here's a matlab script that dumps the age & sex of a list of subjects.

subjs={'CBU090515','CBU090516','CBU090518','CBU090519','CBU090520','CBU090829','CBU090830','CBU090837','CBU090838','CBU090842'};
rawpath='/mridata/cbu';

for subjind=1:length(subjs)
    fn=dir(fullfile(rawpath,[subjs{subjind} '*']));
    try
        daydir=dir(fullfile(rawpath,fn(1).name,'2009*'));
        seriesdir=dir(fullfile(rawpath,fn(1).name,daydir(1).name,'Series*'));
        dicomfn=dir(fullfile(rawpath,fn(1).name,daydir(1).name,seriesdir(1).name,'*.dcm'));
        dicomfn=fullfile(rawpath,fn(1).name,daydir(1).name,seriesdir(1).name,dicomfn(1).name);
        fprintf('%s\t',subjs{subjind});
        H=spm_dicom_headers(dicomfn);
        fprintf('%s\t%s\n',H{1}.PatientsSex,H{1}.PatientsAge);
    catch
            fprintf('Cannot find %s\n',subjs{subjind});
    end;
end;

CbuImaging: DumpDemographics (last edited 2013-03-07 21:22:58 by localhost)