|
@@ -6,9 +6,15 @@ addpath('nrrd_read_write_rensonnet')
|
|
|
|
|
|
[cax,cm]=loadTime(path,patientID);
|
|
|
|
|
|
-segmFile=fullfile(path,patientID,sprintf('%s_Segmentation.txt',patientID));
|
|
|
+%segmFile=fullfile(path,patientID,sprintf('%s_Segmentation.txt',patientID));
|
|
|
%v0=loadPixels(segm,patientID);
|
|
|
-v0=dlmread(segmFile);
|
|
|
+[filepath,name,suffix]=fileparts(segmFile);
|
|
|
+if suffix=='nrrd'
|
|
|
+ v0=extractPixelsFromNrrd(segmFile);
|
|
|
+end
|
|
|
+if suffix=='txt'
|
|
|
+ v0=dlmread(segmFile);
|
|
|
+end
|
|
|
|
|
|
data=loadSPECTdata(path,patientID,cm);
|
|
|
|