-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdicom_unpack.py
More file actions
137 lines (122 loc) · 5.68 KB
/
Copy pathdicom_unpack.py
File metadata and controls
137 lines (122 loc) · 5.68 KB
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
#!/usr/bin/env python
from pathlib import Path
from argparse import ArgumentParser, Namespace, ArgumentDefaultsHelpFormatter
import numpy as np
from chris_plugin import chris_plugin, PathMapper
import pydicom as dicom
import os
from pflog import pflog
from pftag import pftag
from jobController import jobber
__version__ = '1.3.3'
DISPLAY_TITLE = r"""
_ _ _ _
| | | (_) | |
_ __ | |______ __| |_ ___ ___ _ __ ___ _ _ _ __ _ __ __ _ ___| | __
| '_ \| |______/ _` | |/ __/ _ \| '_ ` _ \ | | | | '_ \| '_ \ / _` |/ __| |/ /
| |_) | | | (_| | | (_| (_) | | | | | || |_| | | | | |_) | (_| | (__| <
| .__/|_| \__,_|_|\___\___/|_| |_| |_| \__,_|_| |_| .__/ \__,_|\___|_|\_\
| | ______ | |
|_| |______| |_|
""" + "\t\t -- version " + __version__ + " --\n\n"
parser = ArgumentParser(description='A ChRIS plugin to unpack individual dicom slices from a volume dicom file',
formatter_class=ArgumentDefaultsHelpFormatter)
parser.add_argument('-f', '--fileFilter', default='dcm', type=str,
help='input file filter glob')
parser.add_argument('-t', '--outputType', default='dcm', type=str,
help='output file type')
parser.add_argument('-V', '--version', action='version',
version=f'%(prog)s {__version__}')
parser.add_argument( '--pftelDB',
dest = 'pftelDB',
default = '',
type = str,
help = 'optional pftel server DB path')
# The main function of this *ChRIS* plugin is denoted by this ``@chris_plugin`` "decorator."
# Some metadata about the plugin is specified here. There is more metadata specified in setup.py.
#
# documentation: https://fnndsc.github.io/chris_plugin/chris_plugin.html#chris_plugin
@chris_plugin(
parser=parser,
title='A ChRIS plugin to unpack multi-frame dicom file to individual slices',
category='', # ref. https://chrisstore.co/plugins
min_memory_limit='8Gi', # supported units: Mi, Gi
min_cpu_limit='2000m', # millicores, e.g. "1000m" = 1 CPU core
min_gpu_limit=0 # set min_gpu_limit=1 to enable GPU
)
@pflog.tel_logTime(
event = 'dicom_unpack',
log = 'Unpack dicom slices from a single multiframe dicom'
)
def main(options: Namespace, inputdir: Path, outputdir: Path):
"""
*ChRIS* plugins usually have two positional arguments: an **input directory** containing
input files and an **output directory** where to write output files. Command-line arguments
are passed to this main method implicitly when ``main()`` is called below without parameters.
:param options: non-positional arguments parsed by the parser given to @chris_plugin
:param inputdir: directory containing (read-only) input files
:param outputdir: directory where to write output files
"""
print(DISPLAY_TITLE)
# Typically it's easier to think of programs as operating on individual files
# rather than directories. The helper functions provided by a ``PathMapper``
# object make it easy to discover input files and write to output files inside
# the given paths.
#
# Refer to the documentation for more options, examples, and advanced uses e.g.
# adding a progress bar and parallelism.
mapper = PathMapper.file_mapper(inputdir, outputdir, glob=f"**/*.{options.fileFilter}",fail_if_empty=False)
for input_file, output_file in mapper:
dicom_file = read_dicom(str(input_file))
if dicom_file is None:
continue
split_dicom_multiframe(dicom_file, output_file)
if __name__ == '__main__':
main()
def split_dicom_multiframe(dicom_data_set, output_file):
"""
A method to split a 3D dicom file to individual 2D dicom
slices
"""
dir_path = str(output_file).replace('.dcm', '')
print(f"Creating o/p directory: {dir_path}")
os.makedirs(dir_path, exist_ok=True)
for i, slice in enumerate(dicom_data_set.pixel_array):
dicom_data_set.PixelData = slice.tobytes()
# specifically handle compressed dicoms with YBR_FULL_422 PI
if "YBR_FULL_422" in dicom_data_set.PhotometricInterpretation:
dicom_data_set.PhotometricInterpretation = "YBR_FULL"
dicom_data_set.NumberOfFrames = 1
op_dcm_path = os.path.join(dir_path, f'slice_{i:03n}.dcm')
print(f"Saving file : -->slice_{i:03n}.dcm<--")
dicom_data_set.save_as(op_dcm_path)
def read_dicom(dicom_path:str):
"""
A method to read a dicom file and return the dicom dataset
"""
print(f"Reading dicom file : -->{dicom_path}<--")
dataset = None
tmp_decompressed_path = decompress_dicom(dicom_path)
try:
dataset = dicom.dcmread(tmp_decompressed_path)
except Exception as ex:
print(tmp_decompressed_path, ex)
return dataset
def decompress_dicom(dicom_path: str):
"""
Decompress a DICOM file using `dcmdjpeg` command found in `dcmtk` library
"""
tmp_path = f"/tmp/decompressed.dcm"
print(f"Decompressing DICOM as {tmp_path}")
shell = jobber({'verbosity': 1, 'noJobLogging': True})
str_cmd = (f"dcmdjpeg"
f" {dicom_path}"
f" {tmp_path}")
d_response = shell.job_run(str_cmd)
print(f"Command: {d_response['cmd']}")
if d_response['returncode']:
print(f"Error: {d_response['stderr']}")
raise Exception(d_response["stderr"])
else:
print("Response: File decompressed successfully.")
return tmp_path