Filter löschen
Filter löschen

Dicom open from multiple folders

3 Ansichten (letzte 30 Tage)
ash fairy
ash fairy am 28 Jul. 2019
Kommentiert: Walter Roberson am 28 Jul. 2019
can u help me with a code to open a folder with a subject name and its n number of subfolders to search for DICOM images? after it finds first subjects dicom file, then it has to go back to the next subject name and go to the subfolders and get dicominfo and go to all the subject list
this below code is'int workig
%%Define a starting folder.
rootdir = '\C:\Users\user\Desktop\dicom';
filelist = dir(fullfile(rootdir)); %get list of files and folders in any subfolder
%filelist = dir(fullfile(rootdir, '**\*.*'));
filelist = filelist(~[filelist.isdir]); %remove folders from list
  3 Kommentare
ash fairy
ash fairy am 28 Jul. 2019
this will read the dicom info and get me all files of dicom
% reading the dicom
info = dicominfo(filenames);
dicom = dicomread(filenames);
%%
% % Get all of the files
files = dir(fullfile(file, '*'));
filenames1 = cellfun(@(x)fullfile(file, x), {files.name}, 'uni', 0);
Walter Roberson
Walter Roberson am 28 Jul. 2019
No. dicominfo() can only produce information for one file at a time.
info_cell = cellfun(@dicominfo, filenames, 'uniform', 0);
data_cell = cellfun(@dicomread, filenames, 'uniform', 0);
I do not assume here that all of the images are the same size. If they are, then you can
data_array = cat(ndims(data_cell{1})+1, data_cell{:});

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu DICOM Format finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by