File: dicom_reader_test.cpp

package info (click to toggle)
sight 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,252 kB
  • sloc: cpp: 310,629; xml: 17,622; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (485 lines) | stat: -rw-r--r-- 34,153 bytes parent folder | download | duplicates (2)
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
/************************************************************************
 *
 * Copyright (C) 2009-2024 IRCAD France
 * Copyright (C) 2012-2020 IHU Strasbourg
 *
 * This file is part of Sight.
 *
 * Sight is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Sight is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sight. If not, see <https://www.gnu.org/licenses/>.
 *
 ***********************************************************************/

#include "dicom_reader_test.hpp"

#include <core/tools/date_and_time.hpp>
#include <core/type.hpp>

#include <data/image.hpp>
#include <data/image_series.hpp>
#include <data/series.hpp>

namespace sight::utest_data
{

// cspell: disable
//------------------------------------------------------------------------------

template<typename T>
static inline void check_value(bool& _check, const std::string& _message, T _val1, T _val2)
{
    bool ok = (_val1 == _val2);
    _check &= ok;
    SIGHT_ERROR_IF(_message << " <" << _val1 << "> != <" << _val2 << ">", !ok);
}

//------------------------------------------------------------------------------

template<typename T>
static inline void check_value_with_tolerance(bool& _check, const std::string& _message, T _val1, T _val2, T _tol)
{
    bool ok = (_val1 - _tol <= _val2 && _val2 <= _val1 + _tol);
    _check &= ok;
    SIGHT_ERROR_IF(_message << _val1 << " != " << _val2, !ok);
}

//------------------------------------------------------------------------------

bool dicom_reader_test::check_series_jms_genou(const data::image_series::sptr& _series)
{
    using namespace std::literals::string_literals;

    bool ok                 = true;
    bool not_really_checked = true;

    // Ignore unused-but-set-variable
    std::ignore = not_really_checked;

    //# Dicom-File-Format
    //
    //# Dicom-Meta-Information-Header
    //# Used TransferSyntax:
    //(0002,0000) UL 224                                                # 4,1 File Meta Information Group Length
    //(0002,0001) OB 00\01                                              # 2,1 File Meta Information Version
    //(0002,0002) UI [1.2.840.10008.5.1.4.1.1.2]                        # 26,1 Media Storage SOP Class UID
    //(0002,0003) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225184712.380696]         # 58,1 Media Storage SOP
    // Instance UID
    //(0002,0010) UI [1.2.840.10008.1.2.1]                              # 20,1 Transfer Syntax UID
    //(0002,0012) UI [1.2.250.1.119.1.1.1.1.1.1.33.3.8.13.7]            # 38,1 Implementation Class UID
    //(0002,0013) SH [scanplus_33 ]                                     # 12,1 Implementation Version Name
    //(0002,0016) AE [scanplus]                                         # 8,1 Source application Entity Title
    //
    //# Dicom-Data-Set
    //# Used TransferSyntax: 1.2.840.10008.1.2.1
    //(0008,0000) UL 426                                                # 4,1 Generic Group Length
    //(0008,0008) CS [ORIGINAL\PRIMARY\AXIAL]                           # 22,2-n Image Type
    //(0008,0016) UI [1.2.840.10008.5.1.4.1.1.2]                        # 26,1 SOP Class UID
    //(0008,0018) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225184712.380696]         # 58,1 SOP Instance UID
    //(0008,0020) DA [20171028]                                         # 8,1 Study Date
    check_value(ok, "Study Date doesn't match : ", "20171028"s, _series->get_study_date());
    //(0008,0021) DA [20171028]                                         # 8,1 Series Date
    check_value(ok, "Series Date doesn't match : ", "20171028"s, _series->get_series_date());
    //(0008,0022) DA [20171028]                                         # 8,1 Acquisition Date
    //(0008,0023) DA [20171028]                                         # 8,1 Content Date
    //(0008,0030) TM [174327.000]                                       # 10,1 Study Time
    check_value(ok, "Study Time doesn't match : ", "174327.000"s, _series->get_study_time());
    //(0008,0031) TM [180156.734]                                       # 10,1 Series Time
    check_value(ok, "Series Time doesn't match : ", "180156.734"s, _series->get_series_time());
    //(0008,0032) TM [174446.850]                                       # 10,1 Acquisition Time
    //(0008,0033) TM [174502.095]                                       # 10,1 Content Time
    //(0008,0050) SH [12514 ]                                           # 6,1 Accession Number
    //(0008,0060) CS [CT]                                               # 2,1 Modality
    check_value(ok, "Series Modality doesn't match : ", "CT"s, _series->get_modality_string());
    //(0008,0070) LO [TOSHIBA ]                                         # 8,1 Manufacturer
    //(0008,0080) LO [SCANNER DU MORDOR ]                               # 20,1 Institution Name
    check_value(
        ok,
        "Equipment's Institution Name doesn't match : ",
        "SCANNER DU MORDOR "s,
        _series->get_institution_name()
    );
    //(0008,0090) PN [DR MOREL]                                         # 8,1 Referring Physician's Name
    check_value(
        ok,
        "Study Referring Physician's Name doesn't match : ",
        "DR MOREL"s,
        _series->get_referring_physician_name()
    );
    //(0008,1010) SH [00000000001 ]                                     # 12,1 Station Name
    //(0008,103e) LO [ OS 0.5   ]                                       # 10,1 Series Description
    check_value(ok, "Study Description doesn't match : ", " OS 0.5 "s, _series->get_series_description());
    check_value(ok, "Study Description doesn't match : ", ""s, _series->get_study_description()); // 0008,1030
    //(0008,1040) LO [ID_DEPARTMENT ]                                   # 14,1 Institutional Department Name
    // 0008,1050
    check_value(
        ok,
        "Name of the physician(s) administering the Series doesn't match : ",
        ""s,
        _series->get_performing_physician_name()
    );
    //(0008,1090) LO [Aquilion]                                         # 8,1 Manufacturer's Model Name
    //(0010,0000) UL 104                                                # 4,1 Generic Group Length
    //(0010,0010) PN [SAVA JEAN-MICHEL]                                   # 14,1 Patient's Name
    check_value(ok, "Patient's Name doesn't match : ", "SAVA JEAN-MICHEL"s, _series->get_patient_name());
    //(0010,0020) LO [12592 ARTHRO GENOU  G ]                           # 22,1 Patient ID
    check_value(ok, "Patient ID doesn't match : ", "12592 ARTHRO GENOU  G "s, _series->get_patient_id());
    //(0010,0030) DA [19970926]                                         # 8,1 Patient's Birth Date
    check_value(ok, "Patient's Birth Date doesn't match : ", "19970926"s, _series->get_patient_birth_date());
    //(0010,0040) CS [M ]                                               # 2,1 Patient's Sex
    check_value(ok, "Patient's Sex doesn't match :", "M "s, _series->get_patient_sex());
    //(0010,1010) AS [029Y]                                             # 4,1 Patient's Age
    check_value(ok, "Study Patient's Age doesn't match :", "029Y"s, _series->get_patient_age());
    //(0010,4000) LT [ARTHRO]                                           # 6,1 Patient Comments
    //(0018,0000) UL 284                                                # 4,1 Generic Group Length
    //(0018,0015) CS [DR MOREL]                                         # 8,1 Body Part Examined
    //(0018,0022) CS [HELICAL_CT]                                       # 10,1-n Scan Options
    //(0018,0050) DS [0.5 ]                                             # 4,1 Slice Thickness
    //(0018,0060) DS [120 ]                                             # 4,1 KVP
    //(0018,0090) DS [400.00]                                           # 6,1 Data Collection Diameter
    //(0018,1000) LO [C4522344]                                         # 8,1 Device Serial Number
    //(0018,1020) LO [V3.20ER005]                                       # 10,1-n Software Version(s)
    //(0018,1030) LO [ARTHRO GENOU]                                     # 12,1 Protocol Name
    //(0018,1100) DS [196.875 ]                                         # 8,1 Reconstruction Diameter
    //(0018,1120) DS [+0.0]                                             # 4,1 Gantry/Detector Tilt
    //(0018,1130) DS [+90.00]                                           # 6,1 Table Height
    //(0018,1140) CS [CW]                                               # 2,1 Rotation Direction
    //(0018,1150) IS [500 ]                                             # 4,1 Exposure Time
    //(0018,1151) IS [200 ]                                             # 4,1 X-Ray Tube Current
    //(0018,1152) IS [100 ]                                             # 4,1 Exposure
    //(0018,1170) IS [24]                                               # 2,1 Generator Power
    //(0018,1190) DS [0.9\0.8 ]                                         # 8,1-n Focal Spot(s)
    //(0018,1210) SH [FC30]                                             # 4,1-n Convolution Kernel
    //(0018,5100) CS [FFS ]                                             # 4,1 Patient Position
    //(0018,9345) UN (FD) 23.1                                          # 8,1 CTDIvol
    //(0020,0000) UL 370                                                # 4,1 Generic Group Length
    //(0020,000d) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225183167.375775]         # 58,1 Study Instance UID
    check_value(
        ok,
        "Study Instance UID doesn't match :",
        "1.2.392.200036.9116.2.6.1.48.1211418863.1225183167.375775"s,
        _series->get_study_instance_uid()
    );
    //(0020,000e) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225184516.765855]         # 58,1 Series Instance UID
    check_value(
        ok,
        "Series Instance UID doesn't match :",
        "1.2.392.200036.9116.2.6.1.48.1211418863.1225184516.765855"s,
        _series->get_series_instance_uid()
    );
    //(0020,0010) SH [12514 ]                                           # 6,1 Study ID
    //(0020,0011) IS [3 ]                                               # 2,1 Series Number
    //(0020,0012) IS [3 ]                                               # 2,1 Acquisition Number
    //(0020,0013) IS [404 ]                                             # 4,1 Instance Number
    //(0020,0020) CS [L\P ]                                             # 4,2 Patient Orientation
    //(0020,0032) DS [-36.71875\-88.28125\1350.300]                     # 28,3 Image Position (Patient)

    if(_series->size_in_bytes() <= 0)
    {
        SIGHT_ERROR("Missing image.");
        return false;
    }

    check_value_with_tolerance(ok, "Image x origin doesn't match  :", -36.71875, _series->origin()[0], 0.01);
    check_value_with_tolerance(ok, "Image y origin doesn't match  :", -88.28125, _series->origin()[1], 0.01);
    check_value_with_tolerance(ok, "Image z origin doesn't match  :", 1350.300, _series->origin()[2], 0.01);
    //(0020,0037) DS [1.00000\0.00000\0.00000\0.00000\1.00000\0.00000 ]         # 48,6 Image Orientation (Patient)
    //(0020,0052) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225183409.15274]         # 56,1 Frame of Reference UID
    //(0020,1040) LO (no value)                                         # 0,1 Position Reference Indicator
    //(0020,1041) DS [+161.20 ]                                         # 8,1 Slice Location
    //(0028,0000) UL 158                                                # 4,1 Generic Group Length
    //(0028,0002) US 1                                                  # 2,1 Samples per Pixel
    //(0028,0004) CS [MONOCHROME2 ]                                     # 12,1 Photometric Interpretation
    //(0028,0010) US 512                                                # 2,1 Rows
    //(0028,0011) US 512                                                # 2,1 Columns
    check_value(ok, "Image x size doesn't match  :", std::size_t(512), _series->size()[0]);
    check_value(ok, "Image y size doesn't match  :", std::size_t(512), _series->size()[1]);
    check_value(ok, "Image z size doesn't match  :", std::size_t(404), _series->size()[2]);
    //(0028,0030) DS [0.384\0.384 ]                                     # 12,2 Pixel Spacing
    check_value_with_tolerance(ok, "Image x spacing doesn't match  :", 0.384, _series->spacing()[0], 0.001);
    check_value_with_tolerance(ok, "Image y spacing doesn't match  :", 0.384, _series->spacing()[1], 0.001);
    check_value_with_tolerance(ok, "Image z spacing doesn't match  :", 0.399, _series->spacing()[2], 0.001);
    //(0028,0100) US 16                                                 # 2,1 Bits Allocated
    //(0028,0101) US 16                                                 # 2,1 Bits Stored
    check_value(
        not_really_checked,
        "Image Bits Allocated correspond  :",
        std::size_t(16),
        _series->type().size() * 8
    );
    //(0028,0102) US 15                                                 # 2,1 High Bit
    //(0028,0103) US 1                                                  # 2,1 Pixel Representation
    check_value(not_really_checked, "Image Bits Allocated correspond  :", false, _series->type().is_signed());
    //(0028,1050) DS [500 ]                                             # 4,1-n Window Center
    check_value(ok, "Image Window Center correspond  :", 500.0, _series->window_center().front());
    //(0028,1051) DS [2500]                                             # 4,1-n Window Width
    check_value(ok, "Image Window Width correspond  :", 2500.0, _series->window_width().front());
    //(0028,1052) DS [-1024 ]                                           # 6,1 Rescale Intercept
    //(0028,1053) DS [1 ]                                               # 2,1 Rescale Slope
    //(0040,0000) UL 116                                                # 4,1 Generic Group Length
    //(0040,0002) DA [20171028]                                         # 8,1 Scheduled Procedure Step Start Date
    //(0040,0003) TM [174327.000]                                       # 10,1 Scheduled Procedure Step Start Time
    //(0040,0004) DA [20171028]                                         # 8,1 Scheduled Procedure Step End Date
    //(0040,0005) TM [181327.000]                                       # 10,1 Scheduled Procedure Step End Time
    //(0040,0244) DA [20171028]                                         # 8,1 Performed Procedure Step Start Date
    //(0040,0245) TM [174327.000]                                       # 10,1 Performed Procedure Step Start Time
    //(0040,0253) SH [12325 ]                                           # 6,1 Performed Procedure Step ID
    //(7005,0000) UL 546                                                # 4,1 Generic Group Length
    //(7005,0010) LO [TOSHIBA_MEC_CT3 ]                                 # 16,1 Private Creator
    //(7005,1007) UN (DS) [335\269 ]                                    # 8,2 Reconstruction Center
    //(7005,1008) UN (DS) [0.5 ]                                        # 4,1 Detector Slice Thickness in mm
    //(7005,1009) UN (LO) [1111111111111111]                            # 16,1 Number of Detector rows to Reconstruct
    //(7005,100a) UN (DS) [+5.50 ]                                      # 6,1 Table Speed in mm/rot
    //(7005,100b) UN (SH) [ORG ]                                        # 4,1 filter
    //(7005,100d) UN (CS) [DR MOREL]                                    # 8,1 Organ
    //(7005,100e) UN (SH) [IMG ]                                        # 4,1 File Type Remarks
    //(7005,100f) UN (SH) [FF]                                          # 2,1 Direction
    //(7005,1011) UN (LT) [Vol.]                                        # 4,1 Series Comment
    //(7005,1012) UN (SH) [SU]                                          # 2,1 Position
    //(7005,1013) UN (US) 1                                             # 2,1 Expert Plan No.
    //(7005,1016) UN (UI) [1.2.392.200036.9116.2.6.1.48.1211418863.1225184516.747732]         # 58,1 Volume UID
    //(7005,1017) UN (US) 404                                           # 2,1 Total Frame Count in the Volume
    //(7005,1018) UN (US) 404                                           # 2,1 Frame No.
    //(7005,1019) UN (UL) 1642763                                       # 4,1 Frame Sort Key
    //(7005,101a) UN (US) 1                                             # 2,1 Frame Sort Order
    //(7005,101b) UN (SH) [FC30]                                        # 4,1 Convolution Kernel
    //(7005,101d) UN (UL) 9                                             # 4,1 Reconstruction Number
    //(7005,101e) UN (UL) 13                                            # 4,1 Raw Data Number
    //(7005,101f) UN (LO) [20171028180156768480]                        # 20,1 Volume Number
    //(7005,1020) UN (UL) 3                                             # 4,1 Local Series Number
    //(7005,1021) UN (LO) [BOOST ]                                      # 6,1 Decrease in Artifact filter
    //(7005,1022) UN (DS) [0.40]                                        # 4,1 Reconstruction Interval
    //(7005,1023) UN (DS) [0.688 ]                                      # 6,1 Pitch Factor
    //(7005,1024) UN (DA) [20081024]                                    # 8,1 The Acquisition Date of NRA
    //(7005,1030) UN (CS) [CT]                                          # 2,1 Main Modality in Study
    //(7005,1040) UN (FD) 402.4                                         # 8,1 DLP Dose Length Product

    return ok;
}

//------------------------------------------------------------------------------

bool dicom_reader_test::check_series_jms_genou_trimmed(const data::image_series::sptr& _series)
{
    using namespace std::literals::string_literals;

    bool ok                 = true;
    bool not_really_checked = true;

    // Ignore unused-but-set-variable
    std::ignore = not_really_checked;

    // Study, Acquisition
    //# Dicom-File-Format
    //
    //# Dicom-Meta-Information-Header
    //# Used TransferSyntax:
    //(0002,0000) UL 224                                                # 4,1 File Meta Information Group Length
    //(0002,0001) OB 00\01                                              # 2,1 File Meta Information Version
    //(0002,0002) UI [1.2.840.10008.5.1.4.1.1.2]                        # 26,1 Media Storage SOP Class UID
    //(0002,0003) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225184712.380696]         # 58,1 Media Storage SOP
    // Instance UID
    //(0002,0010) UI [1.2.840.10008.1.2.1]                              # 20,1 Transfer Syntax UID
    //(0002,0012) UI [1.2.250.1.119.1.1.1.1.1.1.33.3.8.13.7]            # 38,1 Implementation Class UID
    //(0002,0013) SH [scanplus_33 ]                                     # 12,1 Implementation Version Name
    //(0002,0016) AE [scanplus]                                         # 8,1 Source application Entity Title
    //
    //# Dicom-Data-Set
    //# Used TransferSyntax: 1.2.840.10008.1.2.1
    //(0008,0000) UL 426                                                # 4,1 Generic Group Length
    //(0008,0008) CS [ORIGINAL\PRIMARY\AXIAL]                           # 22,2-n Image Type
    //(0008,0016) UI [1.2.840.10008.5.1.4.1.1.2]                        # 26,1 SOP Class UID
    //(0008,0018) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225184712.380696]         # 58,1 SOP Instance UID
    //(0008,0020) DA [20171028]                                         # 8,1 Study Date
    check_value(ok, "Study Date doesn't match : ", "20171028"s, _series->get_study_date());
    //(0008,0021) DA [20171028]                                         # 8,1 Series Date
    check_value(ok, "Series Date doesn't match : ", "20171028"s, _series->get_series_date());
    //(0008,0022) DA [20171028]                                         # 8,1 Acquisition Date
    //(0008,0023) DA [20171028]                                         # 8,1 Content Date
    //(0008,0030) TM [174327.000]                                       # 10,1 Study Time
    check_value(ok, "Study Time doesn't match : ", "174327.000"s, _series->get_study_time());
    //(0008,0031) TM [180156.734]                                       # 10,1 Series Time
    check_value(ok, "Series Time doesn't match : ", "180156.734"s, _series->get_series_time());
    //(0008,0032) TM [174446.850]                                       # 10,1 Acquisition Time
    //(0008,0033) TM [174502.095]                                       # 10,1 Content Time
    //(0008,0050) SH [12514 ]                                           # 6,1 Accession Number
    //(0008,0060) CS [CT]                                               # 2,1 Modality
    check_value(ok, "Series Modality doesn't match : ", "CT"s, _series->get_modality_string());
    //(0008,0070) LO [TOSHIBA ]                                         # 8,1 Manufacturer
    //(0008,0080) LO [SCANNER DU MORDOR ]                               # 20,1 Institution Name
    check_value(
        ok,
        "Equipment's Institution Name doesn't match : ",
        "SCANNER DU MORDOR"s,
        _series->get_institution_name()
    );
    //(0008,0090) PN [DR MOREL]                                         # 8,1 Referring Physician's Name
    check_value(
        ok,
        "Study Referring Physician's Name doesn't match : ",
        "DR MOREL"s,
        _series->get_referring_physician_name()
    );
    //(0008,1010) SH [00000000001 ]                                     # 12,1 Station Name
    //(0008,103e) LO [ OS 0.5   ]                                       # 10,1 Series Description
    check_value(ok, "Study Description doesn't match : ", "OS 0.5"s, _series->get_series_description());
    check_value(ok, "Study Description doesn't match : ", ""s, _series->get_study_description()); // 0008,1030
    //(0008,1040) LO [ID_DEPARTMENT ]                                   # 14,1 Institutional Department Name
    // 0008,1050
    check_value(
        ok,
        "Name of the physician(s) administering the Series doesn't match : ",
        ""s,
        _series->get_performing_physician_name()
    );
    //(0008,1090) LO [Aquilion]                                         # 8,1 Manufacturer's Model Name
    //(0010,0000) UL 104                                                # 4,1 Generic Group Length
    //(0010,0010) PN [SAVA JEAN-MICHEL]                                   # 14,1 Patient's Name
    check_value(ok, "Patient's Name doesn't match : ", "SAVA JEAN-MICHEL"s, _series->get_patient_name());
    //(0010,0020) LO [12592 ARTHRO GENOU  G ]                           # 22,1 Patient ID
    check_value(ok, "Patient ID doesn't match : ", "12592 ARTHRO GENOU  G"s, _series->get_patient_id());
    //(0010,0030) DA [19970926]                                         # 8,1 Patient's Birth Date
    check_value(ok, "Patient's Birth Date doesn't match : ", "19970926"s, _series->get_patient_birth_date());
    //(0010,0040) CS [M ]                                               # 2,1 Patient's Sex
    check_value(ok, "Patient's Sex doesn't match :", "M"s, _series->get_patient_sex());
    //(0010,1010) AS [029Y]                                             # 4,1 Patient's Age
    check_value(ok, "Study Patient's Age doesn't match :", "029Y"s, _series->get_patient_age());
    //(0010,4000) LT [ARTHRO]                                           # 6,1 Patient Comments
    //(0018,0000) UL 284                                                # 4,1 Generic Group Length
    //(0018,0015) CS [DR MOREL]                                         # 8,1 Body Part Examined
    //(0018,0022) CS [HELICAL_CT]                                       # 10,1-n Scan Options
    //(0018,0050) DS [0.5 ]                                             # 4,1 Slice Thickness
    //(0018,0060) DS [120 ]                                             # 4,1 KVP
    //(0018,0090) DS [400.00]                                           # 6,1 Data Collection Diameter
    //(0018,1000) LO [C4522344]                                         # 8,1 Device Serial Number
    //(0018,1020) LO [V3.20ER005]                                       # 10,1-n Software Version(s)
    //(0018,1030) LO [ARTHRO GENOU]                                     # 12,1 Protocol Name
    //(0018,1100) DS [196.875 ]                                         # 8,1 Reconstruction Diameter
    //(0018,1120) DS [+0.0]                                             # 4,1 Gantry/Detector Tilt
    //(0018,1130) DS [+90.00]                                           # 6,1 Table Height
    //(0018,1140) CS [CW]                                               # 2,1 Rotation Direction
    //(0018,1150) IS [500 ]                                             # 4,1 Exposure Time
    //(0018,1151) IS [200 ]                                             # 4,1 X-Ray Tube Current
    //(0018,1152) IS [100 ]                                             # 4,1 Exposure
    //(0018,1170) IS [24]                                               # 2,1 Generator Power
    //(0018,1190) DS [0.9\0.8 ]                                         # 8,1-n Focal Spot(s)
    //(0018,1210) SH [FC30]                                             # 4,1-n Convolution Kernel
    //(0018,5100) CS [FFS ]                                             # 4,1 Patient Position
    //(0018,9345) UN (FD) 23.1                                          # 8,1 CTDIvol
    //(0020,0000) UL 370                                                # 4,1 Generic Group Length
    //(0020,000d) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225183167.375775]         # 58,1 Study Instance UID
    check_value(
        ok,
        "Study Instance UID doesn't match :",
        "1.2.392.200036.9116.2.6.1.48.1211418863.1225183167.375775"s,
        _series->get_study_instance_uid()
    );
    //(0020,000e) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225184516.765855]         # 58,1 Series Instance UID
    check_value(
        ok,
        "Series Instance UID doesn't match :",
        "1.2.392.200036.9116.2.6.1.48.1211418863.1225184516.765855"s,
        _series->get_series_instance_uid()
    );
    //(0020,0010) SH [12514 ]                                           # 6,1 Study ID
    //(0020,0011) IS [3 ]                                               # 2,1 Series Number
    //(0020,0012) IS [3 ]                                               # 2,1 Acquisition Number
    //(0020,0013) IS [404 ]                                             # 4,1 Instance Number
    //(0020,0020) CS [L\P ]                                             # 4,2 Patient Orientation
    //(0020,0032) DS [-36.71875\-88.28125\1350.300]                     # 28,3 Image Position (Patient)

    if(_series->size_in_bytes() <= 0)
    {
        SIGHT_ERROR("Missing image.");
        return false;
    }

    check_value_with_tolerance(ok, "Image x origin doesn't match  :", -36.71875, _series->origin()[0], 0.01);
    check_value_with_tolerance(ok, "Image y origin doesn't match  :", -88.28125, _series->origin()[1], 0.01);
    check_value_with_tolerance(ok, "Image z origin doesn't match  :", 1350.300, _series->origin()[2], 0.01);
    //(0020,0037) DS [1.00000\0.00000\0.00000\0.00000\1.00000\0.00000 ]         # 48,6 Image Orientation (Patient)
    //(0020,0052) UI [1.2.392.200036.9116.2.6.1.48.1211418863.1225183409.15274]         # 56,1 Frame of Reference UID
    //(0020,1040) LO (no value)                                         # 0,1 Position Reference Indicator
    //(0020,1041) DS [+161.20 ]                                         # 8,1 Slice Location
    //(0028,0000) UL 158                                                # 4,1 Generic Group Length
    //(0028,0002) US 1                                                  # 2,1 Samples per Pixel
    //(0028,0004) CS [MONOCHROME2 ]                                     # 12,1 Photometric Interpretation
    //(0028,0010) US 512                                                # 2,1 Rows
    //(0028,0011) US 512                                                # 2,1 Columns
    check_value(ok, "Image x size doesn't match  :", std::size_t(512), _series->size()[0]);
    check_value(ok, "Image y size doesn't match  :", std::size_t(512), _series->size()[1]);
    check_value(ok, "Image z size doesn't match  :", std::size_t(404), _series->size()[2]);
    //(0028,0030) DS [0.384\0.384 ]                                     # 12,2 Pixel Spacing
    check_value_with_tolerance(ok, "Image x spacing doesn't match  :", 0.384, _series->spacing()[0], 0.001);
    check_value_with_tolerance(ok, "Image y spacing doesn't match  :", 0.384, _series->spacing()[1], 0.001);
    check_value_with_tolerance(ok, "Image z spacing doesn't match  :", 0.399, _series->spacing()[2], 0.001);
    //(0028,0100) US 16                                                 # 2,1 Bits Allocated
    //(0028,0101) US 16                                                 # 2,1 Bits Stored
    check_value(
        not_really_checked,
        "Image Bits Allocated correspond  :",
        std::size_t(16),
        _series->type().size() * 8
    );
    //(0028,0102) US 15                                                 # 2,1 High Bit
    //(0028,0103) US 1                                                  # 2,1 Pixel Representation
    check_value(not_really_checked, "Image Bits Allocated correspond  :", false, _series->type().is_signed());
    //(0028,1050) DS [500 ]                                             # 4,1-n Window Center
    check_value(ok, "Image Window Center correspond  :", 500.0, _series->window_center().front());
    //(0028,1051) DS [2500]                                             # 4,1-n Window Width
    check_value(ok, "Image Window Width correspond  :", 2500.0, _series->window_width().front());
    //(0028,1052) DS [-1024 ]                                           # 6,1 Rescale Intercept
    //(0028,1053) DS [1 ]                                               # 2,1 Rescale Slope
    //(0040,0000) UL 116                                                # 4,1 Generic Group Length
    //(0040,0002) DA [20171028]                                         # 8,1 Scheduled Procedure Step Start Date
    //(0040,0003) TM [174327.000]                                       # 10,1 Scheduled Procedure Step Start Time
    //(0040,0004) DA [20171028]                                         # 8,1 Scheduled Procedure Step End Date
    //(0040,0005) TM [181327.000]                                       # 10,1 Scheduled Procedure Step End Time
    //(0040,0244) DA [20171028]                                         # 8,1 Performed Procedure Step Start Date
    //(0040,0245) TM [174327.000]                                       # 10,1 Performed Procedure Step Start Time
    //(0040,0253) SH [12325 ]                                           # 6,1 Performed Procedure Step ID
    //(7005,0000) UL 546                                                # 4,1 Generic Group Length
    //(7005,0010) LO [TOSHIBA_MEC_CT3 ]                                 # 16,1 Private Creator
    //(7005,1007) UN (DS) [335\269 ]                                    # 8,2 Reconstruction Center
    //(7005,1008) UN (DS) [0.5 ]                                        # 4,1 Detector Slice Thickness in mm
    //(7005,1009) UN (LO) [1111111111111111]                            # 16,1 Number of Detector rows to Reconstruct
    //(7005,100a) UN (DS) [+5.50 ]                                      # 6,1 Table Speed in mm/rot
    //(7005,100b) UN (SH) [ORG ]                                        # 4,1 filter
    //(7005,100d) UN (CS) [DR MOREL]                                    # 8,1 Organ
    //(7005,100e) UN (SH) [IMG ]                                        # 4,1 File Type Remarks
    //(7005,100f) UN (SH) [FF]                                          # 2,1 Direction
    //(7005,1011) UN (LT) [Vol.]                                        # 4,1 Series Comment
    //(7005,1012) UN (SH) [SU]                                          # 2,1 Position
    //(7005,1013) UN (US) 1                                             # 2,1 Expert Plan No.
    //(7005,1016) UN (UI) [1.2.392.200036.9116.2.6.1.48.1211418863.1225184516.747732]         # 58,1 Volume UID
    //(7005,1017) UN (US) 404                                           # 2,1 Total Frame Count in the Volume
    //(7005,1018) UN (US) 404                                           # 2,1 Frame No.
    //(7005,1019) UN (UL) 1642763                                       # 4,1 Frame Sort Key
    //(7005,101a) UN (US) 1                                             # 2,1 Frame Sort Order
    //(7005,101b) UN (SH) [FC30]                                        # 4,1 Convolution Kernel
    //(7005,101d) UN (UL) 9                                             # 4,1 Reconstruction Number
    //(7005,101e) UN (UL) 13                                            # 4,1 Raw Data Number
    //(7005,101f) UN (LO) [20171028180156768480]                        # 20,1 Volume Number
    //(7005,1020) UN (UL) 3                                             # 4,1 Local Series Number
    //(7005,1021) UN (LO) [BOOST ]                                      # 6,1 Decrease in Artifact filter
    //(7005,1022) UN (DS) [0.40]                                        # 4,1 Reconstruction Interval
    //(7005,1023) UN (DS) [0.688 ]                                      # 6,1 Pitch Factor
    //(7005,1024) UN (DA) [20081024]                                    # 8,1 The Acquisition Date of NRA
    //(7005,1030) UN (CS) [CT]                                          # 2,1 Main Modality in Study
    //(7005,1040) UN (FD) 402.4                                         # 8,1 DLP Dose Length Product

    return ok;
}

//cspell: enable

} // namespace sight::utest_data