-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate_checker.py
210 lines (171 loc) · 6.45 KB
/
template_checker.py
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
"""
check a header against best template
"""
from typing import TypedDict
from acq2sqlite import DBQuery
from dcmmeta2tsv import DicomTagReader, TagKey, TagValues
#: Dictionary for mismatches in input (``have`` key) and template (``expect`` key)
ErrorCompare = TypedDict("ErrorCompare", {"have": str, "expect": str})
ErrorDict = dict[TagKey, ErrorCompare]
#: * | ``conforms``: false when a :py:data:`acq2sqlite.DBQuery.CONSTS`
#: | template-parameter between ``input`` and ``template`` mismatch
#: * | ``errors``: nested dict of {``mismatched_param``: ``{'have':...,'expect':...}}``
#: (parameter keyed dictionary with :py:class:`ErrorCompare` values)
#: * | ``input``: dict of all parameters of an input dicom header
#: | (:py:class:`dcmmeta2tsv.TagValues`)
#: * | ``template``: all the parameters of a template (matching Study, SeriesName)
#: | Also a :py:class:`dcmmeta2tsv.TagValues`
#:
#: Here's an example of :py:class:`CheckResult` datastructure in html/javascript
#: on the `static debug-enabled page <../_static/mrqart/index.html>`_
#:
#: .. image:: ../../sphinx/imgs/CheckResults_mrqart.png
#:
CheckResult = TypedDict(
"CheckResult",
{
"conforms": bool,
"input": TagValues,
"template": TagValues,
"errors": ErrorDict,
},
)
def find_errors(
template: TagValues, current_hdr: TagValues, allow_null: list[TagKey] = []
) -> ErrorDict:
"""
Given a template and hdr, find any mismatches (non-conforming errors).
:param template: expected values
:param current_hdr: values we currently have
:param allow_null: current keys that can be null.
see py:class:`TemplateChecker.context`
:returns: dictionary of tag key names and the have/expect values
>>> find_errors({"TR": "1300"}, {"TR": "1300"})
{}
>>> find_errors({"TR": "1300"}, {"TR": "2000"})
{'TR': {'expect': '1300', 'have': '2000'}}
"""
errors = {}
for k in DBQuery.CONSTS:
t_k = template.get(k, "null")
h_k = current_hdr.get(k, "null")
# ["FoV", "TA"] null in ICE expoted dicom. okay to skip
if k in allow_null and h_k == "null":
continue
# TODO: more checks for specific headers
#: TR is in milliseconds. no need to keep decimals precision
if k == "TR":
if t_k == "null":
t_k = 0
if h_k == "null":
h_k = 0
check = int(float(t_k)) == int(float(h_k))
elif k == "iPAT":
check = t_k == h_k
else:
check = str(t_k) == str(h_k)
if check:
continue
errors[k] = {"expect": t_k, "have": h_k}
return errors
class TemplateChecker:
"""cache db connection and list of tags
read a dicom file and report if it conforms to the expected template
"""
def __init__(self, db=None, context="DB"):
"""
db connection and tag reader (from taglist.txt)
:param db: sql connection passed on to :py:class:`DBQuery`.
``None`` (default) is local sqlite3.
:param context: where is template checker running
* | "DB" - rigorous nightly DB check
* | "RT" - lenient for ICEconfig realtime
| dicoms missing some headers
"""
self.db = DBQuery(db)
self.reader = DicomTagReader()
self.context = context
def check_file(self, dcm_path) -> CheckResult:
"""
File disbatch for :py:func:`TemplateChecker.check_header`
:param dcm_path: path to dicom file with header/parameters to read.
:returns: output of check_header
"""
hdr = self.reader.read_dicom_tags(dcm_path)
return self.check_header(hdr)
def check_header(self, hdr) -> CheckResult:
"""
Check acquisition parameters against it's template.
:param hdr: DB row or file dictionary desc. acq. to check against template
:returns: Conforming status, errors, and comparison information
"""
template = self.db.get_template(hdr["Project"], hdr["SequenceName"])
allow_null = []
if self.context == "RT":
#: FoV and TA are not included in dicom headers pushed by scanner
allow_null = ["FoV", "TA", "BWPPE"]
# no template, no errors
if template:
template = dict(template)
errors = find_errors(template, hdr, allow_null)
else:
template = {}
errors = {}
if self.context == "RT":
errors = clean_rt(errors)
return {
"conforms": not errors,
"errors": errors,
"input": hdr,
"template": template,
}
def float_or_0(val: str) -> float:
"float or zero"
try:
return float(val)
except ValueError:
return 0.0
def arraystr_to_float(val: str) -> list[float]:
"""
Parse array values from different dicom types
:param val: array of floats stored as string
:returns: converted to python list
>>> arraystr_to_float("[1.0, 2.0]") # saved dicomes
[1.0, 2.0]
>>> arraystr_to_float("1.0,2.0") # realtime dicoms
[1.0, 2.0]
"""
no_square = str(val).replace("[", "").replace("]", "").replace(" ", "")
arr = [float_or_0(x) for x in no_square.split(",")]
return arr
def fuzzy_arr_check(have, expect) -> bool:
"""
Compare only 3 decimals of a float or array of floats.
Used by :py:func:`clean_rt` when comparing realtime dicom headers to DB
:param have: string of floats on one side
:param expect: string of floats on another
:returns: true if they are roughly the same
>>> fuzzy_arr_check('2.00001', '2')
True
>>> fuzzy_arr_check('[2.00001, 0.0]', '2.0,0.0000001')
True
>>> fuzzy_arr_check('[2,0]', '2,1')
False
"""
have = arraystr_to_float(have)
expect = arraystr_to_float(expect)
have = ",".join(["%.3f" % x for x in have])
expect = ",".join(["%.3f" % x for x in expect])
return have == expect
def clean_rt(errors: ErrorDict) -> ErrorDict:
"""
Clean up errors that are not actually errors in "realtime" dicom headers.
Currently (2025-02-26) only checks ``PixelResol`` using :py:func:`fuzzy_arr_check`
:param errors: have/expect dict of errors
:returns: errors with close ones removed
"""
if "PixelResol" in errors.keys():
errcmp = errors["PixelResol"]
if fuzzy_arr_check(errcmp["have"], errcmp["expect"]):
del errors["PixelResol"]
return errors