Storing data from for loop

2 vues (au cours des 30 derniers jours)
Shaun
Shaun le 27 Jan 2015
Modifié(e) : Stephen23 le 27 Jan 2015
Hi all,
I'm new to Matlab and trying to create a for loop that will save information gathered from a DICOM file into a mtrix for further use. My code so far is as follows...
[FileName PathName] = uigetfile('*.*','Select DICOM File', 'MultiSelect','on');
im1=dicomread([PathName FileName{1}]);
[r c]=size(im1);
I=[];
order=[];
for s=1:length(FileName)
info=dicominfo([PathName FileName{s}]);
order=info.SliceLocation;
I(:,:,s)= [PathName, FileName(s), order]
end
I get the following error when running the code...
Conversion to double from cell is not possible.
Error in Untitled3 (line 11)
I(:,:,s)= [PathName, FileName(s), order]
Any help would be much appreciated. I apologise if any forum rules have not been followed.
  1 commentaire
Stephen23
Stephen23 le 27 Jan 2015
Note it is recommended to use fullfile rather than simply concatenating the path and filename strings.

Connectez-vous pour commenter.

Réponse acceptée

Stephen23
Stephen23 le 27 Jan 2015
Modifié(e) : Stephen23 le 27 Jan 2015
You define I to be of class double with the line I=[];, and you then try to allocate some data into it that is of class cell. Thus the error message.
One alternative it to not preallocate this variable (or even the variable order) and just refer to them first in the loop:
[FileName,PathName] = uigetfile('*.dcm','Select DICOM File', 'MultiSelect','on');
for n = numel(FileName):-1:1
dcinfo = dicominfo(fullfile(PathName,FileName{n}));
%order = dcinfo.SliceLocation; % not in the documentation.
out{n} = fullfile(PathName,FileName(n));
end
Note how I looped from N->1, so that the cell array is correctly sized from the very first iteration (a kind of preallocation ).

Plus de réponses (1)

Sara
Sara le 27 Jan 2015
Try replacing FileName(s) with FileName{s}

Catégories

En savoir plus sur DICOM Format dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by