24 import SimpleITK
as sitk
27 def read_raw(binary_file_name, image_size, sitk_pixel_type, image_spacing=None,
28 image_origin=None, big_endian=False):
30 Read a raw binary scalar image.
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.
38 image_spacing (tuple like): Optional image spacing, if none given assumed
40 image_origin (tuple like): Optional image origin, if none given assumed to
42 big_endian (bool): Optional byte order indicator, if True big endian, else
47 SimpleITK image or None if fails.
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']
63 header = [
'ObjectType = Image\n'.encode(),
64 (
'NDims = {0}\n'.format(dim)).encode(),
65 (
'DimSize = ' +
' '.join([str(v)
for v
in image_size]) +
'\n')
67 (
'ElementSpacing = ' + (
' '.join([str(v)
for v
in image_spacing])
68 if image_spacing
else ' '.join(
69 [
'1'] * dim)) +
'\n').encode(),
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')
75 (
'ElementType = ' + pixel_dict[sitk_pixel_type] +
'\n').encode(),
76 'BinaryData = True\n'.encode(),
77 (
'BinaryDataByteOrderMSB = ' + str(big_endian) +
'\n').encode(),
79 (
'ElementDataFile = ' + os.path.abspath(
80 binary_file_name) +
'\n').encode()]
81 fp = tempfile.NamedTemporaryFile(suffix=
'.mhd', delete=
False)
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 "
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,...",
105 args = parser.parse_args()
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}
119 image = read_raw(binary_file_name=args.raw_file_name,
121 sitk_pixel_type=string_to_pixelType[args.sitk_pixel_type],
122 big_endian=args.big_endian)
126 if "SITK_NOSHOW" not in os.environ: