This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
WriteDICOMTomoPlan.m
572 lines (476 loc) · 20.7 KB
/
WriteDICOMTomoPlan.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
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
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
function varargout = WriteDICOMTomoPlan(plan, file)
% WriteDICOMTomoPlan saves the provided tomotherapy plan structure to a
% DICOM RTPlan file. If the patient demographics (name, ID, etc) are not
% included in the plan structure, the user will be prompted to provide
% them. See https://github.com/mwgeurts/tomo_extract for more information.
%
% The following variables are required for proper execution:
% plan: structure containing the calculated plan information. See
% tomo_extract/LoadPlan() for more information on the format of this
% structure.
% file: string containing the path and name to write the DICOM
% RTDOSE file to. MATLAB must have write access to this location to
% execute successfully.
%
% The following variables are returned upon successful completion:
% varargout{1} (optional): RT plan SOP instance UID
%
% Below is an example of how this function is used:
%
% % Look for plans within a patient archive
% plans = FindPlans('/path/to/archive', 'name_patient.xml');
%
% % Load the first plan
% plan = LoadPlan('/path/to/archive', 'name_patient.xml', plans{1});
%
% % Execute WriteDICOMTomoPlan
% dest = '/file/to/write/plan/to/info.dcm';
% WriteDICOMTomoPlan(plan, dest);
%
% Author: Mark Geurts, mark.w.geurts@gmail.com
% Copyright (C) 2015-2018 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 dose to DICOM RTPlan file ', file]);
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 as RTPlan
info.MediaStorageSOPClassUID = '1.2.840.10008.5.1.4.1.1.481.5';
info.SOPClassUID = info.MediaStorageSOPClassUID;
info.Modality = 'RTPLAN';
% Specify unique instance UID (this will be overwritten by dicomwrite)
info.MediaStorageSOPInstanceUID = dicomuid;
info.SOPInstanceUID = info.MediaStorageSOPInstanceUID;
% Generate creation date/time
if isfield(plan, 'timestamp')
t = plan.timestamp;
else
t = now;
end
% Specify creation date/time
info.InstanceCreationDate = datestr(t, 'yyyymmdd');
info.InstanceCreationTime = datestr(t, 'HHMMSS');
% Specify acquisition date/time
info.StudyDate = datestr(t, 'yyyymmdd');
info.StudyTime = datestr(t, 'HHMMSS');
% Specify manufacturer, model, and software version
info.Manufacturer = ['MATLAB ', version];
info.ManufacturerModelName = 'WriteDICOMPlan';
info.SoftwareVersion = '1.1';
% Specify series description (optional)
if isfield(plan, 'seriesDescription')
info.SeriesDescription = plan.seriesDescription;
else
info.SeriesDescription = '';
end
% Specify study description (optional)
if isfield(plan, 'studyDescription')
info.StudyDescription = plan.studyDescription;
else
info.StudyDescription = '';
end
% Specify patient info (assume that if name isn't provided, nothing is
% provided)
if isfield(plan, 'patientName')
% If name is a structure
if isstruct(plan.patientName)
% Add name from provided dicominfo
info.PatientName = plan.patientName;
% Otherwise, if name is a char array
elseif ischar(plan.patientName)
% Add name to family name
info.PatientName.FamilyName = plan.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(plan, 'patientID')
info.PatientID = plan.patientID;
else
info.PatientID = '';
end
% Specify patient birthdate
if isfield(plan, 'patientBirthDate')
info.PatientBirthDate = plan.patientBirthDate;
else
info.PatientBirthDate = '';
end
% Specify patient sex
if isfield(plan, 'patientSex')
info.PatientSex = upper(plan.patientSex(1));
else
info.PatientSex = '';
end
% Specify patient age
if isfield(plan, 'patientAge')
info.PatientAge = plan.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 study UID
if isfield(plan, 'studyUID')
info.StudyInstanceUID = plan.studyUID;
else
info.StudyInstanceUID = dicomuid;
end
% Specify unique series UID
info.SeriesInstanceUID = dicomuid;
% Specify position reference indicator
info.PositionReferenceIndicator = 'OM';
% Specify frame of reference UID
if isfield(plan, 'frameRefUID')
info.FrameOfReferenceUID = plan.frameRefUID;
else
info.FrameOfReferenceUID = dicomuid;
end
% Specify plan label
if isfield(plan, 'planLabel')
info.RTPlanLabel = plan.planLabel;
else
info.RTPlanLabel = '';
end
% Specify plan date/time
if isfield(plan, 'timestamp')
info.InstanceCreationDate = datestr(plan.timestamp, 'yyyymmdd');
info.InstanceCreationTime = datestr(plan.timestamp, 'HHMMSS');
end
% Specify plan geometry
info.RTPlanGeometry = 'PATIENT';
% Specify prescription summary
if isfield(plan, 'rxDose') && isfield(plan, 'rxVolume')
info.PrescriptionDescription = sprintf(['%0.1f%% of the prescription', ...
' volume receives at least %0.1f Gy'], plan.rxVolume, plan.rxDose);
end
% Specify number of fractions
if isfield(plan, 'fractions')
info.FractionGroupSequence.Item_1.FractionGroupNumber = 1;
info.FractionGroupSequence.Item_1.NumberOfFractionsPlanned = ...
plan.fractions;
info.FractionGroupSequence.Item_1.NumberOfBeams = 1;
info.FractionGroupSequence.Item_1.NumberOfBrachyApplicationSetups = 0;
% Specify fraction prescription dose
if isfield(plan, 'rxDose')
info.FractionGroupSequence.Item_1.ReferencedBeamSequence.Item_1...
.BeamMeterset = 1;
info.FractionGroupSequence.Item_1.ReferencedBeamSequence.Item_1...
.ReferencedBeamNumber = 1;
info.FractionGroupSequence.Item_1.ReferencedDoseReferenceSequence...
.Item_1.TargetPrescriptionDose = plan.rxDose;
end
end
% Specify beam sequence information
if isfield(plan, 'machine') && isfield(plan, 'planType')
info.BeamSequence.Item_1.Manufacturer = 'TomoTherapy Incorporated';
info.BeamSequence.Item_1.ManufacturerModelName = 'Hi-Art';
info.BeamSequence.Item_1.TreatmentMachineName = plan.machine;
info.BeamSequence.Item_1.PrimaryDosimeterUnit = 'MINUTE';
info.BeamSequence.Item_1.SourceAxisDistance = 850;
info.BeamSequence.Item_1.BeamName = ...
[plan.planType, ' TomoTherapy Beam'];
info.BeamSequence.Item_1.RadiationType = 'PHOTON';
info.BeamSequence.Item_1.TreatmentDeliveryType = 'TREATMENT';
% Specify beam definition information
if isfield(plan, 'sinogram') && isfield(plan, 'events') && ...
isfield(plan, 'startTrim')
% Start beam definition tags
info.BeamSequence.Item_1.NumberOfWedges = 0;
info.BeamSequence.Item_1.NumberOfCompensators = 0;
info.BeamSequence.Item_1.NumberOfBoli = 0;
info.BeamSequence.Item_1.NumberOfBlocks = 0;
info.BeamSequence.Item_1.FinalCumulativeMetersetWeight = 1;
info.BeamSequence.Item_1.ReferencedPatientSetupNumber = 1;
info.BeamSequence.Item_1.NumberOfControlPoints = ...
size(plan.sinogram, 2);
% Initialize jaws temporary variable
jaws = zeros(2, plan.totalTau);
% Loop through each event
for i = 1:size(plan.events,1)
% If a jaw front event
if strcmp(plan.events{i,2}, 'jawFront')
% Set all future projections to the specified front jaw
jaws(1, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
ones(1, plan.totalTau - ceil(plan.events{i,1}) + 1) * ...
plan.events{i,3};
% Otherwise if a jaw back event
elseif strcmp(plan.events{i,2}, 'jawBack')
% Set all future projections to the specified back jaw
jaws(2, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
ones(1, plan.totalTau - ceil(plan.events{i,1}) + 1) * ...
plan.events{i,3};
% Otherwise if a jaw front rate event
elseif strcmp(plan.events{i,2}, 'jawFrontRate')
% Set all future projections to the current front jaw
% position plus the specified front jaw rate multiplied by
% number of projections
jaws(1, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
interp1([floor(plan.events{i,1}) ceil(plan.events{i,1}...
+1e-10)], jaws(1, floor(plan.events{i,1})+1:ceil(...
plan.events{i,1}+1e-10)+1), plan.events{i,1}) + ((...
ceil(plan.events{i,1}):plan.totalTau) - ...
plan.events{i,1}) * plan.events{i,3};
% Otherwise if a jaw back event
elseif strcmp(plan.events{i,2}, 'jawBackRate')
% Set all future projections to the current back jaw
% position plus the specified back jaw rate multiplied by
% number of projections
jaws(2, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
interp1([floor(plan.events{i,1}) ceil(plan.events{i,1}...
+1e-10)], jaws(2, floor(plan.events{i,1})+1:ceil(...
plan.events{i,1}+1e-10)+1), plan.events{i,1}) + ((...
ceil(plan.events{i,1}):plan.totalTau) - ...
plan.events{i,1}) * plan.events{i,3};
end
end
% Multiply by 850 mm to project to iso
jaws = jaws * 850;
% Initialize isocenter temporary variable
iso = zeros(3, plan.totalTau+1);
% Loop through each event
for i = 1:size(plan.events,1)
% If an X position event
if strcmp(plan.events{i,2}, 'isoX')
% Set all X positions
iso(1,:) = ones(1, plan.totalTau+1) * plan.events{i,3};
% Otherwise if a Y position event
elseif strcmp(plan.events{i,2}, 'isoY')
% Set all X positions
iso(2,:) = ones(1, plan.totalTau+1) * plan.events{i,3};
% Otherwise if a Z position event
elseif strcmp(plan.events{i,2}, 'isoZ')
% Set all future projections to the specified isoZ
iso(3, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
ones(1, plan.totalTau - ceil(plan.events{i,1}) + 1) * ...
plan.events{i,3};
% Otherwise if a Z rate event
elseif strcmp(plan.events{i,2}, 'isoZRate')
% Set all future projections to the current Z position
% position plus the specified Z rate multiplied by
% number of projections
iso(3, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
interp1([floor(plan.events{i,1}) ceil(plan.events{i,1}...
+1e-10)], iso(3, floor(plan.events{i,1})+1:ceil(...
plan.events{i,1}+1e-10)+1), plan.events{i,1}) + ((...
ceil(plan.events{i,1}):plan.totalTau) - ...
plan.events{i,1}) * plan.events{i,3};
end
end
% Initialize gantry temporary variable
gantry = zeros(1, plan.totalTau);
% Loop through each event
for i = 1:size(plan.events,1)
% If a gantry angle event
if strcmp(plan.events{i,2}, 'gantryAngle')
% Set all future projections to the specified isoZ
gantry(1, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
ones(1, plan.totalTau - ceil(plan.events{i,1}) + 1) * ...
plan.events{i,3};
% Otherwise if a gantry rate event
elseif strcmp(plan.events{i,2}, 'gantryRate')
% Set all future projections to the current gantry position
% position plus the specified gantry rate multiplied by
% number of projections
gantry(1, ceil(plan.events{i,1})+1:plan.totalTau+1) = ...
interp1([floor(plan.events{i,1}) ceil(plan.events{i,1}...
+1e-10)], gantry(1, floor(plan.events{i,1})+1:ceil(...
plan.events{i,1}+1e-10)+1), plan.events{i,1}) + ((...
ceil(plan.events{i,1}):plan.totalTau) - ...
plan.events{i,1}) * plan.events{i,3};
end
end
% Use modulus to convert to degrees
gantry = mod(gantry, 360);
% Loop through control points
for i = 1:size(plan.sinogram, 2)
% Start control point
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).ControlPointIndex = i-1;
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).NominalBeamEnergy = 6;
% Specify X collimators
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).BeamLimitingDevicePositionSequence...
.Item_1.RTBeamLimitingDeviceType = 'X';
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).BeamLimitingDevicePositionSequence...
.Item_1.LeafJawPositions = [-200, 200];
% Specify Y collimators
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).BeamLimitingDevicePositionSequence...
.Item_2.RTBeamLimitingDeviceType = 'ASYMY';
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).BeamLimitingDevicePositionSequence...
.Item_2.LeafJawPositions = [jaws(1, i-1+plan.startTrim(1)), ...
jaws(2, i-1+plan.startTrim(1))];
% Specify gantry angle
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).GantryAngle = ...
gantry(1, i-1+plan.startTrim(1));
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).GantryRotationDirection = 'CW';
% Specify beam limiting device/patient support/table top
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).BeamLimitingDeviceAngle = 0;
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i))...
.BeamLimitingDeviceRotationDirection = 'NONE';
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).PatientSupportAngle = 0;
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i))...
.PatientSupportRotationDirection = 'NONE';
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).TableTopEccentricAngle = 0;
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i))...
.TableTopEccentricRotationDirection = 'NONE';
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).TableTopVerticalPosition = [];
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).TableTopLongitudinalPosition = [];
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).TableTopLateralPosition = [];
% Specify isocenter
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).IsocenterPosition = ...
[iso(1, i-1+plan.startTrim(1)), -iso(2, i-1+plan.startTrim(1)), ...
-iso(3, i-1+plan.startTrim(1))] * 10;
% Specify cumulative meterset
info.BeamSequence.Item_1.ControlPointSequence...
.(sprintf('Item_%i',i)).CumulativeMetersetWeight = ...
i/size(plan.sinogram, 2);
end
% Clear temporary variables
clear i jaws iso gantry;
end
end
% Specify patient setup
if isfield(plan, 'position')
info.PatientSetupSequence.Item_1.PatientPosition = plan.position;
info.PatientSetupSequence.Item_1.PatientSetupNumber = 1;
info.PatientSetupSequence.Item_1.SetupTechnique = 'ISOCENTRIC';
end
% Specify referenced structure set
if isfield(plan, 'structureSetUID')
info.ReferencedStructureSetSequence.Item_1.ReferencedSOPClassUID = ...
'1.2.840.10008.5.1.4.1.1.481.3';
info.ReferencedStructureSetSequence.Item_1.ReferencedSOPInstanceUID = ...
plan.structureSetUID;
end
% Specify referenced dose image
if isfield(plan, 'doseSeriesUID')
info.ReferencedDoseSequence.Item_1.ReferencedSOPClassUID = ...
'1.2.840.10008.5.1.4.1.1.481.2';
info.ReferencedDoseSequence.Item_1.ReferencedSOPInstanceUID = ...
plan.doseSeriesUID;
end
% Specify approval information
if isfield(plan, 'approver') && isfield(plan, 'timestamp')
info.ApprovalStatus = 'APPROVED';
info.ReviewDate = datestr(plan.timestamp, 'yyyymmdd');
info.ReviewTime = datestr(plan.timestamp, 'HHMMSS');
info.ReviewerName = plan.approver;
end
% Write DICOM file using dicomwrite()
status = dicomwrite([], file, info, 'CompressionMode', 'None', 'CreateMode', ...
'Copy', 'Endian', 'ieee-le');
% If the UID is to be returned
if nargout == 1
% Load the dicom file back into info
info = dicominfo(file);
% Return UID
varargout{1} = info.SOPInstanceUID;
% Log UID
if exist('Event', 'file') == 2
Event(['SOPInstanceUID set to ', info.SOPInstanceUID]);
end
end
% Check write status
if isempty(status)
% Log completion of function
if exist('Event', 'file') == 2
Event(sprintf(['DICOM RTPlan 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 RTPlan export completed with one or more ', ...
'warnings in %0.3f seconds'], toc), 'WARN');
else
warning('DICOM RTPlan export completed with one or more warnings');
end
end
% Clear temporary variables
clear info t 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