-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathaedes_readctdata.m
More file actions
554 lines (472 loc) · 13.4 KB
/
aedes_readctdata.m
File metadata and controls
554 lines (472 loc) · 13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
function [DATA,msg] = aedes_readctdata(filename,varargin)
% AEDES_READCTDATA - Read Gamma Medica CT/SPECT data format
%
%
% Synopsis:
% [DATA,msg] = aedes_readctdata(filename,varargin)
%
% Description:
%
% Examples:
%
% See also:
% AEDES
% This function is a part of Aedes - A graphical tool for analyzing
% medical images
%
% Copyright (C) 2006 Juha-Pekka Niskanen <Juha-Pekka.Niskanen@uku.fi>
%
% Department of Physics, Department of Neurobiology
% University of Kuopio, FINLAND
%
% This program may be used under the terms of the GNU General Public
% License version 2.0 as published by the Free Software Foundation
% and appearing in the file LICENSE.TXT included in the packaging of
% this program.
%
% This program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
% WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
DATA=[];
msg='';
ShowWbar = true;
rotation = 0;
flipping = '';
if nargin==0 || isempty(filename)
% Ask for a file
[fname,fpath,findex]=uigetfile({'*.hdr;*.HDR','CT/SPECT header files (*.hdr)';...
'*.xxm;*.XXM','Reconstruction parameter file (*.xxm)';...
'*.*','All Files (*.*)'},...
'Select a file');
if isequal(fname,0) || isequal(fpath,0)
if nargout==2
msg = 'Cancelled';
end
return
end
else
[fpath,fname,fext]=fileparts(filename);
fpath = [fpath,filesep];
fname = [fname,fext];
if strcmpi(fext,'.hdr')
findex = 1;
elseif strcmpi(fext,'.xxm')
findex = 2;
end
end
% Go through varargin
for ii=1:2:length(varargin)
switch lower(varargin{ii})
case 'rotate'
rotation = varargin{ii+1};
case 'flip'
flipping = varargin{ii+1};
end
end
if findex==1
% Read header file
[hdr,msg] = l_ReadHDRFile([fpath,fname]);
if ~isempty(msg)
DATA=[];
return
end
if ShowWbar
% Show aedes_calc_wait
[h,txh]=aedes_calc_wait('Reading SPECT/CT data...');
drawnow
end
% Read data
[data,msg] = l_ReadImgFile([fpath,hdr.DataFileName],hdr);
if ~isempty(msg)
DATA=[];
return
end
if iscell(data)
DATA={};
for ii=1:length(data)
DATA{ii}=struct('DataFormat','spect/ct',...
'FTDATA',data{ii},...
'HDR',hdr);
end
else
DATA.FTDATA = data;
DATA.HDR = hdr;
% Include file information
DATA.HDR.fname = fname;
DATA.HDR.fpath = fpath;
end
if ShowWbar
delete(h)
end
elseif findex==2
% Look for data files in the same directory
%D=dir(fpath);
%f_names={D(~[D(:).isdir]).name};
%slice_ind=strncmpi(fnames,'slice.',6);
% Read parameter file
[DATA.HDR,msg]=l_ReadXXMFile([fpath,fname]);
if ~isempty(msg)
DATA=[];
return
end
% Number of slice files
nFiles = DATA.HDR.PARTAG_CUBESIZEZ;
slice_files = {};
for ii=1:nFiles
slice_files{ii}=[fpath,'slice.',sprintf('%04i',ii-1)];
end
% $$$ if all(slice_ind==0)
% $$$ if nargout==2
% $$$ msg = 'Could not find slice data files!';
% $$$ else
% $$$ error('Could not find slice data files!');
% $$$ end
% $$$ return
% $$$ end
% $$$ slice_files = {f_names{slice_ind}};
% Read data files
[DATA.FTDATA,msg]=l_ReadSliceData(slice_files,DATA.HDR,ShowWbar);
if ~isempty(msg)
DATA=[];
return
end
% Include file information
DATA.HDR.fname = fname;
DATA.HDR.fpath = fpath;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Read *.HDR header file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [HDR,msg]=l_ReadHDRFile(filename)
HDR=[];
msg='';
% Try to open file for reading
fid = fopen(filename,'r');
if fid < 0
msg = sprintf('Could not open file "%s"',filename);
return
end
% Read parameter file
C=textscan(fid,'%s','delimiter','\n');
fclose(fid); % Close file
C=C{1};
if ~strncmp(C{1},'!INTERFILE',10)
msg = sprintf('File "%s" is not valid SPECT/CT HDR-file',filename);
return
end
try
for ii=1:length(C)
if strncmpi(C{ii},'!name of data file',18)
if strcmpi(C{ii}(end),'=')
HDR.DataFileName = '';
else
ind=findstr(C{ii},'=');
HDR.DataFileName = C{ii}(ind+2:end);
end
elseif strncmpi(C{ii},'!patient ID',11)
if strcmpi(C{ii}(end),'=')
HDR.PatientID = '';
else
ind=findstr(C{ii},'=');
HDR.PatientID = C{ii}(ind+2:end);
end
elseif strncmpi(C{ii},'!study ID',9)
if strcmpi(C{ii}(end),'=')
HDR.StudyID = '';
else
ind=findstr(C{ii},'=');
HDR.StudyID = C{ii}(ind+2:end);
end
elseif strncmpi(C{ii},'!matrix size',12)
if strncmpi(C{ii},'!matrix size [1]',16)
ind=findstr(C{ii},'=');
HDR.MatrixSize_1 = str2num(C{ii}(ind+2:end));
elseif strncmpi(C{ii},'!matrix size [2]',16)
ind=findstr(C{ii},'=');
HDR.MatrixSize_2 = str2num(C{ii}(ind+2:end));
elseif strncmpi(C{ii},'!matrix size [3]',16)
ind=findstr(C{ii},'=');
HDR.MatrixSize_3 = str2num(C{ii}(ind+2:end));
end
elseif strncmpi(C{ii},'!number format',14)
if strcmpi(C{ii}(end),'=')
HDR.NumberFormat = '';
else
ind=findstr(C{ii},'=');
HDR.NumberFormat = C{ii}(ind+2:end);
end
elseif strncmpi(C{ii},'!number of bytes per pixel',26)
ind=findstr(C{ii},'=');
HDR.BytesPerPixel = str2num(C{ii}(ind+2:end));
elseif strncmpi(C{ii},'!number of images this frame group',34)
ind=findstr(C{ii},'=');
HDR.ImagesInFrameGroup = str2num(C{ii}(ind+2:end));
elseif strncmpi(C{ii},'!number of frame groups',23)
ind=findstr(C{ii},'=');
HDR.NbrOfFrameGroups = str2num(C{ii}(ind+2:end));
%% Parse frame groups
done = false;
count = ii+1;
framecount = 0;
while ~done
if strncmpi(C{count},'!frame group number',19)
framecount = framecount+1;
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).FrameGroupNbr = ...
str2num(C{count}(ind+2:end));
elseif strncmpi(C{count},'!matrix size [1]',16)
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).MatrixSize_1 = str2num(C{count}(ind+2:end));
elseif strncmpi(C{count},'!matrix size [2]',16)
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).MatrixSize_2 = ...
str2num(C{count}(ind+2:end));
elseif strncmpi(C{count},'!number format',14)
if strcmpi(C{count}(end),'=')
HDR.FrameGroups(framecount).NumberFormat = '';
else
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).NumberFormat = C{count}(ind+2:end);
end
elseif strncmpi(C{count},'!number of bytes per pixel',26)
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).BytesPerPixel = ...
str2num(C{count}(ind+2:end));
elseif strncmpi(C{count},'!number of images this frame group',34)
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).ImagesInFrameGroup = ...
str2num(C{count}(ind+2:end));
elseif strncmpi(C{count},'image duration',14)
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).ImageDuration = ...
str2num(C{count}(ind+2:end));
elseif strncmpi(C{count},'!maximum pixel count in group',29)
ind=findstr(C{count},'=');
HDR.FrameGroups(framecount).MaxPixelCount = ...
str2num(C{count}(ind+2:end));
%% Check if we can bail out from the while loop
if HDR.NbrOfFrameGroups==framecount
done=true;
end
elseif strncmpi(C{count},'!END OF INTERFILE',17)
%% End of file -> break from while loop
done=true;
end
count =count+1;
end
%% Break away from the FOR-loop
break;
else
continue
end
end
catch
msg = sprintf('Error occurred while parsing file "%s"',filename)
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Read IMG file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [data,msg]=l_ReadImgFile(filename,HDR);
msg='';
data = [];
% Try to open img file for reading
fid = fopen(filename,'r');
if fid < 0
msg = sprintf('Could not open file "%s" for reading',filename);
return
end
% Data size for Frame Group Data
if isfield(HDR,'FrameGroups')
%% Check if the slices in frame groups are of different sizes
if all([HDR.FrameGroups(:).MatrixSize_1]==...
HDR.FrameGroups(1).MatrixSize_1) && ...
all([HDR.FrameGroups(:).MatrixSize_2]==...
HDR.FrameGroups(1).MatrixSize_2)
equalSize = true;
% Allocate variable 'data'
data=[];
else
equalSize = false;
% Allocate variable 'data'
data={};
end
%% Read frame groups separately
for ii=1:HDR.NbrOfFrameGroups
xSize = HDR.FrameGroups(ii).MatrixSize_1;
ySize = HDR.FrameGroups(ii).MatrixSize_2;
zSize = HDR.FrameGroups(ii).ImagesInFrameGroup;
% Get data type
if strcmpi(HDR.FrameGroups(ii).NumberFormat,'unsigned integer')
if HDR.FrameGroups(ii).BytesPerPixel==2
DataStr = '*uint16';
elseif HDR.FrameGroups(ii).BytesPerPixel==1
DataStr = '*uint8';
end
elseif strcmpi(HDR.FrameGroups(ii).NumberFormat,'signed integer')
if HDR.FrameGroups(ii).BytesPerPixel==2
DataStr = '*int16';
elseif HDR.FrameGroups(ii).BytesPerPixel==1
DataStr = '*int8';
end
end
% Read data
try
data_tmp = fread(fid,xSize*ySize*zSize,DataStr);
data_tmp = reshape(data_tmp,[xSize ySize zSize]);
% Orient data
data_tmp = permute(data_tmp,[2 1 3]);
data_tmp = data_tmp(:,size(data_tmp,2):-1:1,:);
catch
msg = sprintf('Error while reading data from "%s"',filename);
% Close file
fclose(fid);
return
end
if equalSize
if ii==1
data(:,:,end:end+(size(data_tmp,3)-1))=data_tmp;
else
data(:,:,end+1:end+(size(data_tmp,3)))=data_tmp;
end
else
for kk=1:size(data_tmp,3)
data{end+1}=data_tmp(:,:,kk);
end
end
end
else
% Get data size from header
xSize = HDR.MatrixSize_1;
ySize = HDR.MatrixSize_2;
if isfield(HDR,'MatrixSize_3')
zSize = HDR.MatrixSize_3;
elseif isfield(HDR,'ImagesInFrameGroup')
zSize = HDR.ImagesInFrameGroup;
if isfield(HDR,'NbrOfFrameGroups')
zSize = zSize*HDR.NbrOfFrameGroups;
end
else
zSize = 1;
end
% Get data type
if strcmpi(HDR.NumberFormat,'unsigned integer')
if HDR.BytesPerPixel==2
DataStr = '*uint16';
elseif HDR.BytesPerPixel==1
DataStr = '*uint8';
end
elseif strcmpi(HDR.NumberFormat,'signed integer')
if HDR.BytesPerPixel==2
DataStr = '*int16';
elseif HDR.BytesPerPixel==1
DataStr = '*int8';
end
end
% Read data
try
data = fread(fid,xSize*ySize*zSize,DataStr);
data = reshape(data,[xSize ySize zSize]);
% Orient data
data = permute(data,[2 1 3]);
data = data(:,size(data,2):-1:1,:);
catch
msg = sprintf('Error while reading data from "%s"',filename);
% Close file
fclose(fid);
return
end
end
% Close file
fclose(fid);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Read XXM reconstruction parameter file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [HDR,msg]=l_ReadXXMFile(filename)
HDR=[];
msg='';
% Try to open file for reading
fid = fopen(filename,'r');
if fid < 0
msg = sprintf('Could not open file "%s"',filename);
return
end
% Read parameter file
C=textscan(fid,'%s','delimiter','\n');
fclose(fid); % Close file
C=C{1};
HDR.Tags={};
% Loop over lines in the file
for ii=1:length(C)
if isempty(C{ii})
continue
end
if strncmpi(C{ii},'BPMODETAG',9)
HDR.Tags{end+1} = C{ii};
continue;
end
if strncmpi(C{ii},'****',4)
if strncmpi(C{ii},'**** R',6)
HDR.Date = C{ii};
elseif strncmpi(C{ii},'**** T',6)
HDR.TotalReconstructionTime = C{ii};
end
continue
end
ind=findstr(C{ii},'=');
if isempty(ind)
continue
end
% Extract parameter and value
param=C{ii}(1:ind-1);
value=C{ii}(ind+1:end);
% Test if the parameter is a number
val_num=str2num(value);
if isempty(val_num);
val_num=value;
end
HDR.(param)=val_num;
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Read Slice Data
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function [data,msg]=l_ReadSliceData(slice_files,HDR,ShowWbar)
msg='';
% Get data size from header
xSize = HDR.PARTAG_CUBESIZEX;
ySize = HDR.PARTAG_CUBESIZEY;
nFiles = HDR.PARTAG_CUBESIZEZ;
% Allocate space for data
data = zeros([xSize,ySize,nFiles],'int16');
% Show waitbar
if ShowWbar
hWbar=aedes_wbar(0,['Reading file 1/',num2str(nFiles)]);
tmp_h=findall(hWbar,'string',['Reading file 1/',num2str(nFiles)]);
set(tmp_h,'interpreter','none')
end
% Loop over slice files
for ii=1:length(slice_files)
% Update waitbar
if ShowWbar
aedes_wbar(ii/nFiles,hWbar,...
{['Reading file ',num2str(ii),'/',num2str(nFiles)],...
slice_files{ii}});
end
fid = fopen(slice_files{ii},'r');
if fid < 0
data = [];
msg = sprintf('Could not open file "%s" for reading!', ...
slice_files{ii});
if ShowWbar
close(hWbar)
end
return
end
% Read data
data(:,:,ii)=fread(fid,[xSize ySize],'*int16');
fclose(fid); % Close file
end
% Permute data to correct orientation
data = permute(data,[2 1 3]);
data = data(:,size(data,2):-1:1,:);
if ShowWbar
close(hWbar);
end