SimpleITK  2.0.0
RawImageReading/RawImageReading.py
1 #!/usr/bin/env python
2 # =========================================================================
3 #
4 # Copyright NumFOCUS
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 # http://www.apache.org/licenses/LICENSE-2.0.txt
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # =========================================================================
19 
20 import argparse
21 import os
22 import tempfile
23 
24 import SimpleITK as sitk
25 
26 
27 def read_raw(binary_file_name, image_size, sitk_pixel_type, image_spacing=None,
28  image_origin=None, big_endian=False):
29  """
30  Read a raw binary scalar image.
31 
32  Parameters
33  ----------
34  binary_file_name (str): Raw, binary image file content.
35  image_size (tuple like): Size of image (e.g. [2048,2048])
36  sitk_pixel_type (SimpleITK pixel type: Pixel type of data (e.g.
37  sitk.sitkUInt16).
38  image_spacing (tuple like): Optional image spacing, if none given assumed
39  to be [1]*dim.
40  image_origin (tuple like): Optional image origin, if none given assumed to
41  be [0]*dim.
42  big_endian (bool): Optional byte order indicator, if True big endian, else
43  little endian.
44 
45  Returns
46  -------
47  SimpleITK image or None if fails.
48  """
49 
50  pixel_dict = {sitk.sitkUInt8: 'MET_UCHAR',
51  sitk.sitkInt8: 'MET_CHAR',
52  sitk.sitkUInt16: 'MET_USHORT',
53  sitk.sitkInt16: 'MET_SHORT',
54  sitk.sitkUInt32: 'MET_UINT',
55  sitk.sitkInt32: 'MET_INT',
56  sitk.sitkUInt64: 'MET_ULONG_LONG',
57  sitk.sitkInt64: 'MET_LONG_LONG',
58  sitk.sitkFloat32: 'MET_FLOAT',
59  sitk.sitkFloat64: 'MET_DOUBLE'}
60  direction_cosine = ['1 0 0 1', '1 0 0 0 1 0 0 0 1',
61  '1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1']
62  dim = len(image_size)
63  header = ['ObjectType = Image\n'.encode(),
64  ('NDims = {0}\n'.format(dim)).encode(),
65  ('DimSize = ' + ' '.join([str(v) for v in image_size]) + '\n')
66  .encode(),
67  ('ElementSpacing = ' + (' '.join([str(v) for v in image_spacing])
68  if image_spacing else ' '.join(
69  ['1'] * dim)) + '\n').encode(),
70  ('Offset = ' + (
71  ' '.join([str(v) for v in image_origin]) if image_origin
72  else ' '.join(['0'] * dim) + '\n')).encode(),
73  ('TransformMatrix = ' + direction_cosine[dim - 2] + '\n')
74  .encode(),
75  ('ElementType = ' + pixel_dict[sitk_pixel_type] + '\n').encode(),
76  'BinaryData = True\n'.encode(),
77  ('BinaryDataByteOrderMSB = ' + str(big_endian) + '\n').encode(),
78  # ElementDataFile must be the last entry in the header
79  ('ElementDataFile = ' + os.path.abspath(
80  binary_file_name) + '\n').encode()]
81  fp = tempfile.NamedTemporaryFile(suffix='.mhd', delete=False)
82 
83  print(header)
84 
85  # Not using the tempfile with a context manager and auto-delete
86  # because on windows we can't open the file a second time for ReadImage.
87  fp.writelines(header)
88  fp.close()
89  img = sitk.ReadImage(fp.name)
90  os.remove(fp.name)
91  return img
92 
93 
94 parser = argparse.ArgumentParser()
95 parser.add_argument('raw_file_name', help='path to raw binary image file')
96 parser.add_argument('out_file_name',
97  help='output file name when image read as little endian')
98 parser.add_argument("big_endian", type=lambda v: v.lower() in {"1", "true"},
99  help="\'false\' for little ending or \'true\'for big "
100  "endian")
101 parser.add_argument('sitk_pixel_type',
102  help="SimpleITK pixel type (e.g. sitk.sitkUInt16)")
103 parser.add_argument('sz', nargs='+', help="image size, x,y,...",
104  type=int)
105 args = parser.parse_args()
106 
107 string_to_pixelType = {"sitkUInt8": sitk.sitkUInt8,
108  "sitkInt8": sitk.sitkInt8,
109  "sitkUInt16": sitk.sitkUInt16,
110  "sitkInt16": sitk.sitkInt16,
111  "sitkUInt32": sitk.sitkUInt32,
112  "sitkInt32": sitk.sitkInt32,
113  "sitkUInt64": sitk.sitkUInt64,
114  "sitkInt64": sitk.sitkInt64,
115  "sitkFloat32": sitk.sitkFloat32,
116  "sitkFloat64": sitk.sitkFloat64}
117 
118 # Read the image using both big and little endian
119 image = read_raw(binary_file_name=args.raw_file_name,
120  image_size=args.sz,
121  sitk_pixel_type=string_to_pixelType[args.sitk_pixel_type],
122  big_endian=args.big_endian)
123 
124 sitk.WriteImage(image, args.out_file_name)
125 
126 if "SITK_NOSHOW" not in os.environ:
127  sitk.Show(image, 'raw converted')
itk::simple::WriteImage
SITKIO_EXPORT void WriteImage(const Image &image, const std::vector< std::string > &fileNames, bool useCompression=false, int compressionLevel=-1)
WriteImage is a procedural interface to the ImageSeriesWriter. class which is convenient for many ima...
itk::simple::Show
void SITKIO_EXPORT Show(const Image &image, const std::string &title="", const bool debugOn=ProcessObject::GetGlobalDefaultDebug())
itk::simple::ReadImage
SITKIO_EXPORT Image ReadImage(const std::vector< std::string > &fileNames, PixelIDValueEnum outputPixelType=sitkUnknown, const std::string &imageIO="")
ReadImage is a procedural interface to the ImageSeriesReader class which is convenient for most image...