-
Notifications
You must be signed in to change notification settings - Fork 1
/
WriteDICOMImage.m
410 lines (342 loc) · 12.7 KB
/
WriteDICOMImage.m
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
function varargout = WriteDICOMImage(varargin)
% WriteDICOMImage saves the provided image array to a series of DICOM CT
% files. If DICOM header information is provided in the third input
% argument, it will be used to populate the DICOM header for associating
% the image set with a DICOM RTDOSE file.
%
% The following variables are required for proper execution:
% varargin{1}: structure containing the image data. Must contain
% start, width, and data fields. See LoadImage for more information
% on the format of this object. Start and widths are in cm.
% varargin{2}: string containing the path and prefix to write the DICOM
% CT files to. Names will be appended with _###.dcm, where ### is the
% slice number. MATLAB must have write access to this location to
% execute successfully.
% varargin{3} (optional): structure containing the following DICOM header
% fields: patientName, patientID, patientBirthDate, patientSex,
% patientAge, classUID, studyUID, seriesUID, frameRefUID,
% instanceUIDs, and seriesDescription. Note, not all fields must be
% provided to execute.
%
% The following variables are returned upon successful completion:
% varargout{1} (optional): cell array of image SOP instance UIDs
%
% Below is an example of how this function is used:
%
% % Create a random array of dose values with 120 slices
% image.data = rand(512, 512, 120);
%
% % Specify start coordinates of array (in cm)
% image.start = [-25, -25, -15];
%
% % Specify voxel size (in cm)
% image.width = [0.098, 0.098, 0.25];
%
% % Declare file name prefix and path to write dose to
% dest = '/path_to_file/images';
%
% % Declare DICOM Header information
% info.patientName = 'DOE,JANE';
% info.patientID = '12345678';
% info.frameRefUID = ...
% '2.16.840.1.114362.1.6.4.3.141209.9459257770.378448688.100.4';
%
% % Execute WriteDICOMImage
% WriteDICOMImage(image, dest, info);
%
% Author: Mark Geurts, [email protected]
% Copyright (C) 2016 University of Wisconsin Board of Regents
%
% This program is free software: you can redistribute it and/or modify it
% under the terms of the GNU General Public License as published by the
% Free Software Foundation, either version 3 of the License, or (at your
% option) any later version.
%
% This program is distributed in the hope that it will be useful, but
% WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
% Public License for more details.
%
% You should have received a copy of the GNU General Public License along
% with this program. If not, see http://www.gnu.org/licenses/.
% Check if MATLAB can find dicomwrite (Image Processing Toolbox)
if exist('dicomwrite', 'file') ~= 2
% If not, throw an error
if exist('Event', 'file') == 2
Event(['The Image Processing Toolbox cannot be found and is ', ...
'required by this function.'], 'ERROR');
else
error(['The Image Processing Toolbox cannot be found and is ', ...
'required by this function.']);
end
end
% Execute in try/catch statement
try
% Log start of DVH computation and start timer
if exist('Event', 'file') == 2
Event(['Writing image to DICOM CT files ', varargin{2}, '_*']);
tic;
end
% Initialize dicominfo structure with FileMetaInformationVersion
info.FileMetaInformationVersion = [0;1];
% Specify transfer syntax and implementation UIDs
info.TransferSyntaxUID = '1.2.840.10008.1.2';
info.ImplementationClassUID = '1.2.40.0.13.1.1';
info.ImplementationVersionName = 'dcm4che-2.0';
info.SpecificCharacterSet = 'ISO_IR 100';
% Specify class UID based on provided class
if nargin == 3 && isfield(varargin{3}, 'classUID') && ...
isfield(varargin{3}, 'type')
info.MediaStorageSOPClassUID = varargin{3}.classUID;
info.Modality = varargin{3}.type;
% Otherwise, assume it is CT
else
info.MediaStorageSOPClassUID = '1.2.840.10008.5.1.4.1.1.2';
info.Modality = 'CT';
end
% Copy SOP class UID from Media
info.SOPClassUID = info.MediaStorageSOPClassUID;
% If minimum image value is below zero, assume image is in HU and add 1024
if min(min(min(varargin{1}.data))) < 0
varargin{1}.data = varargin{1}.data + 1024;
end
% Set intercept and slope based on modality
if strcmp(info.MediaStorageSOPClassUID, '1.2.840.10008.5.1.4.1.1.2')
info.RescaleIntercept = -1024;
info.RescaleSlope = 1;
else
info.RescaleIntercept = 0;
info.RescaleSlope = 1;
end
% Generate creation date/time
if nargin == 3 && isfield(varargin{3}, 'timestamp')
t = varargin{3}.timestamp;
else
t = now;
end
% Specify creation date/time
info.InstanceCreationDate = datestr(t, 'yyyymmdd');
info.InstanceCreationTime = datestr(t, 'HHMMSS');
% Specify acquisition date/time
info.AcquisitionDate = datestr(t, 'yyyymmdd');
info.AcquisitionTime = datestr(t, 'HHMMSS');
% Specifty image type
info.ImageType = 'ORIGINAL/PRIMARY/AXIAL';
% Specify manufacturer, model, and software version
info.Manufacturer = ['MATLAB ', version];
info.ManufacturerModelName = 'WriteDICOMImage';
info.SoftwareVersion = '1.2';
% Specify series description (optional)
if nargin == 3 && isfield(varargin{3}, 'seriesDescription')
info.SeriesDescription = varargin{3}.seriesDescription;
else
info.SeriesDescription = '';
end
% Specify study description (optional)
if nargin == 3 && isfield(varargin{3}, 'studyDescription')
info.StudyDescription = varargin{3}.studyDescription;
else
info.StudyDescription = '';
end
% Specify patient info (assume that if name isn't provided, nothing is
% provided)
if nargin == 3 && isfield(varargin{3}, 'patientName')
% If name is a structure
if isstruct(varargin{3}.patientName)
% Add name from provided dicominfo
info.PatientName = varargin{3}.patientName;
% Otherwise, if name is a char array
elseif ischar(varargin{3}.patientName)
% Add name to family name
info.PatientName.FamilyName = varargin{3}.patientName;
% Otherwise, throw an error
else
if exist('Event', 'file') == 2
Event('Provided patient name is an unknown format', 'ERROR');
else
error('Provided patient name is an unknown format');
end
end
% Specify patient ID
if isfield(varargin{3}, 'patientID')
info.PatientID = varargin{3}.patientID;
else
info.PatientID = '';
end
% Specify patient birthdate
if isfield(varargin{3}, 'patientBirthDate')
info.PatientBirthDate = varargin{3}.patientBirthDate;
else
info.PatientBirthDate = '';
end
% Specify patient sex
if isfield(varargin{3}, 'patientSex')
info.PatientSex = upper(varargin{3}.patientSex(1));
else
info.PatientSex = '';
end
% Specify patient age
if isfield(varargin{3}, 'patientAge')
info.PatientAge = varargin{3}.patientAge;
else
info.PatientAge = '';
end
% If a valid screen size is returned (MATLAB was run without -nodisplay)
elseif usejava('jvm') && feature('ShowFigureWindows')
% Prompt user for patient name
input = inputdlg({'Family Name', 'Given Name', 'ID', 'Birth Date', ...
'Sex', 'Age'}, 'Provide Patient Demographics', ...
[1 50; 1 50; 1 30; 1 30; 1 10; 1 10]);
% Add provided input
info.PatientName.FamilyName = char(input{1});
info.PatientName.GivenName = char(input{2});
info.PatientID = char(input{3});
info.PatientBirthDate = char(input{4});
info.PatientSex = char(input{5});
info.PatientAge = char(input{6});
% Clear temporary variables
clear input;
% Otherwise, no data was provided and no UI exists to prompt user
else
% Add generic data
info.PatientName.FamilyName = 'DOE';
info.PatientName.GivenName = 'J';
info.PatientID = '00000000';
info.PatientBirthDate = '';
info.PatientSex = '';
info.PatientAge = '';
end
% Specify slice thickness (in mm)
info.SliceThickness = varargin{1}.width(3) * 10; % mm
% Specify study UID
if nargin == 3 && isfield(varargin{3}, 'studyUID')
info.StudyInstanceUID = varargin{3}.studyUID;
else
info.StudyInstanceUID = dicomuid;
end
% Specify series UID
if nargin == 3 && isfield(varargin{3}, 'seriesUID')
info.SeriesInstanceUID = varargin{3}.seriesUID;
else
info.SeriesInstanceUID = dicomuid;
end
% Specify frame of reference UID
if nargin == 3 && isfield(varargin{3}, 'frameRefUID')
info.FrameOfReferenceUID = varargin{3}.frameRefUID;
% Otherwise, generate unique frame of reference ID
else
info.FrameOfReferenceUID = dicomuid;
end
% Specify patient position
if nargin == 3 && isfield(varargin{3}, 'position')
info.PatientPosition = varargin{3}.position;
end
% Specify image orientation
if nargin == 3 && isfield(varargin{3}, 'position')
% Set orientation based on patient position
if strcmpi(varargin{3}.position, 'HFP')
info.ImageOrientationPatient = [-1;0;0;0;-1;0];
elseif strcmpi(varargin{3}.position, 'FFS')
info.ImageOrientationPatient = [-1;0;0;0;1;0];
elseif strcmpi(varargin{3}.position, 'FFP')
info.ImageOrientationPatient = [1;0;0;0;-1;0];
else
info.ImageOrientationPatient = [1;0;0;0;1;0];
end
% Otherwise, assume standard (HFS) orientation
else
info.ImageOrientationPatient = [1;0;0;0;1;0];
end
% Specify IEC-X position, in mm
info.ImagePositionPatient(1) = varargin{1}.start(1) * 10 * ...
info.ImageOrientationPatient(1);
% Specify IEC-Z position, in mm
info.ImagePositionPatient(2) = -(varargin{1}.start(2) + ...
varargin{1}.width(2) * (size(varargin{1}.data,2)-1)) * 10 * ...
info.ImageOrientationPatient(5);
% Specify IEC-Y position, in mm
info.ImagePositionPatient(3) = -varargin{1}.start(3) * 10;
% Specify number of images
info.ImagesInAcquisition = size(varargin{1}.data, 3);
% Specify number of samples
info.SamplesPerPixel = 1;
info.PhotometricInterpretation = 'MONOCHROME2';
% Specify number of rows/columns
info.Rows = size(varargin{1}.data, 1);
info.Columns = size(varargin{1}.data, 2);
% Specify pixel spacing (in mm)
info.PixelSpacing = [varargin{1}.width(1); varargin{1}.width(2)] * 10; % mm
% Specify bit information
info.BitsAllocated = 16;
info.BitsStored = 16;
info.HighBit = 15;
info.PixelRepresentation = 0;
% Loop through Images
for i = 1:size(varargin{1}.data, 3)
% Specify slice instance UID
if nargin == 3 && isfield(varargin{3}, 'instanceUIDs')
info.MediaStorageSOPInstanceUID = varargin{3}.instanceUIDs{i};
else
info.MediaStorageSOPInstanceUID = dicomuid;
end
% Specify return variable
if nargout == 1
varargout{1}{i} = info.MediaStorageSOPInstanceUID;
end
% Copy instance UID from media storage UID
info.SOPInstanceUID = info.MediaStorageSOPInstanceUID;
% Specify slice location in mm
if isequal(info.ImageOrientationPatient, [1;0;0;0;1;0]) || ...
isequal(info.ImageOrientationPatient, [-1;0;0;0;-1;0])
% Slice position for head first
info.SliceLocation = (varargin{1}.start(3) + (i - 1) * ...
varargin{1}.width(3)) * 10;
else
% Slice position for feet first
info.SliceLocation = -(varargin{1}.start(3) + (i - 1) * ...
varargin{1}.width(3)) * 10;
end
% Update image position to slice location
info.ImagePositionPatient(3) = -info.SliceLocation;
% Write DICOM file using dicomwrite()
status = dicomwrite(flip(rot90(uint16(varargin{1}.data(:,:,i)), 3), 2), ...
[varargin{2}, sprintf('_%03i.dcm', i)], info, ...
'CompressionMode', 'None', 'CreateMode', 'Copy', 'Endian', ...
'ieee-le');
% If status is not empty, break loop
if ~isempty(status)
break;
end
% Log UID
if exist('Event', 'file') == 2
Event(sprintf('Image %i written with SOPInstanceUID %s', i, ...
info.SOPInstanceUID));
end
end
% Check write status
if isempty(status)
% Log completion of function
if exist('Event', 'file') == 2
Event(sprintf(['DICOM image export completed successfully in ', ...
'%0.3f seconds'], toc));
end
% If not empty, warn user of any errors
else
% Log completion of function
if exist('Event', 'file') == 2
Event(sprintf(['DICOM image export completed with one or more ', ...
'warnings in %0.3f seconds'], toc), 'WARN');
else
warning('DICOM image export completed with one or more warnings');
end
end
% Clear temporary variables
clear info t i status;
% Catch errors, log, and rethrow
catch err
if exist('Event', 'file') == 2
Event(getReport(err, 'extended', 'hyperlinks', 'off'), 'ERROR');
else
rethrow(err);
end
end