SimpleITK  
DicomSeriesReadModifyWrite/DicomSeriesReadModifySeriesWrite.py
1 # =========================================================================
2 #
3 # Copyright NumFOCUS
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0.txt
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 # =========================================================================
18 
19 
20 import SimpleITK as sitk
21 
22 import sys
23 import time
24 import os
25 
26 if len(sys.argv) < 3:
27  print(
28  "Usage: python "
29  + __file__
30  + " <input_directory_with_DICOM_series> <output_directory>"
31  )
32  sys.exit(1)
33 
34 # Read the original series. First obtain the series file names using the
35 # image series reader.
36 data_directory = sys.argv[1]
37 series_IDs = sitk.ImageSeriesReader.GetGDCMSeriesIDs(data_directory)
38 if not series_IDs:
39  print(
40  'ERROR: given directory "'
41  + data_directory
42  + '" does not contain a DICOM series.'
43  )
44  sys.exit(1)
45 series_file_names = sitk.ImageSeriesReader.GetGDCMSeriesFileNames(
46  data_directory, series_IDs[0]
47 )
48 
49 series_reader = sitk.ImageSeriesReader()
50 series_reader.SetFileNames(series_file_names)
51 
52 # Configure the reader to load all of the DICOM tags (public+private):
53 # By default tags are not loaded (saves time).
54 # By default if tags are loaded, the private tags are not loaded.
55 # We explicitly configure the reader to load tags, including the
56 # private ones.
57 series_reader.MetaDataDictionaryArrayUpdateOn()
58 series_reader.LoadPrivateTagsOn()
59 image3D = series_reader.Execute()
60 
61 # Modify the image (blurring)
62 filtered_image = sitk.DiscreteGaussian(image3D)
63 
64 # Write the 3D image as a series
65 # IMPORTANT: There are many DICOM tags that need to be updated when you modify
66 # an original image. This is a delicate opration and requires
67 # knowledge of the DICOM standard. This example only modifies some.
68 # For a more complete list of tags that need to be modified see:
69 # http://gdcm.sourceforge.net/wiki/index.php/Writing_DICOM
70 
71 writer = sitk.ImageFileWriter()
72 # Use the study/series/frame of reference information given in the meta-data
73 # dictionary and not the automatically generated information from the file IO
74 writer.KeepOriginalImageUIDOn()
75 
76 # Copy relevant tags from the original meta-data dictionary (private tags are
77 # also accessible).
78 tags_to_copy = [
79  "0010|0010", # Patient Name
80  "0010|0020", # Patient ID
81  "0010|0030", # Patient Birth Date
82  "0020|000D", # Study Instance UID, for machine consumption
83  "0020|0010", # Study ID, for human consumption
84  "0008|0020", # Study Date
85  "0008|0030", # Study Time
86  "0008|0050", # Accession Number
87  "0008|0060", # Modality
88 ]
89 
90 modification_time = time.strftime("%H%M%S")
91 modification_date = time.strftime("%Y%m%d")
92 
93 # Copy some of the tags and add the relevant tags indicating the change.
94 # For the series instance UID (0020|000e), each of the components is a number,
95 # cannot start with zero, and separated by a '.' We create a unique series ID
96 # using the date and time.
97 # Tags of interest:
98 direction = filtered_image.GetDirection()
99 series_tag_values = [
100  (k, series_reader.GetMetaData(0, k))
101  for k in tags_to_copy
102  if series_reader.HasMetaDataKey(0, k)
103 ] + [
104  ("0008|0031", modification_time), # Series Time
105  ("0008|0021", modification_date), # Series Date
106  ("0008|0008", "DERIVED\\SECONDARY"), # Image Type
107  (
108  "0020|000e",
109  "1.2.826.0.1.3680043.2.1125."
110  + modification_date
111  + ".1"
112  + modification_time,
113  ),
114  # Series Instance UID
115  (
116  "0020|0037",
117  "\\".join(
118  map(
119  str,
120  (
121  direction[0],
122  direction[3],
123  direction[6],
124  # Image Orientation (Patient)
125  direction[1],
126  direction[4],
127  direction[7],
128  ),
129  )
130  ),
131  ),
132  (
133  "0008|103e",
134  series_reader.GetMetaData(0, "0008|103e") + " Processed-SimpleITK",
135  ),
136 ] # Series Description
137 
138 for i in range(filtered_image.GetDepth()):
139  image_slice = filtered_image[:, :, i]
140  # Tags shared by the series.
141  for tag, value in series_tag_values:
142  image_slice.SetMetaData(tag, value)
143  # Slice specific tags.
144  # Instance Creation Date
145  image_slice.SetMetaData("0008|0012", time.strftime("%Y%m%d"))
146  # Instance Creation Time
147  image_slice.SetMetaData("0008|0013", time.strftime("%H%M%S"))
148  # Image Position (Patient)
149  image_slice.SetMetaData(
150  "0020|0032",
151  "\\".join(
152  map(str, filtered_image.TransformIndexToPhysicalPoint((0, 0, i)))
153  ),
154  )
155  # Instace Number
156  image_slice.SetMetaData("0020|0013", str(i))
157 
158  # Write to the output directory and add the extension dcm, to force writing
159  # in DICOM format.
160  writer.SetFileName(os.path.join(sys.argv[2], str(i) + ".dcm"))
161  writer.Execute(image_slice)
162 sys.exit(0)
itk::simple::DiscreteGaussian
Image DiscreteGaussian(const Image &image1, std::vector< double > variance=std::vector< double >(3, 1.0), unsigned int maximumKernelWidth=32u, std::vector< double > maximumError=std::vector< double >(3, 0.01), bool useImageSpacing=true)
Blurs an image by separable convolution with discrete gaussian kernels. This filter performs Gaussian...
itk::simple::ImageSeriesReader
Read series of image files into a SimpleITK image.
Definition: sitkImageSeriesReader.h:56
itk::simple::ImageFileWriter
Write out a SimpleITK image to the specified file location.
Definition: sitkImageFileWriter.h:48