Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkDICOMEnums.h
Go to the documentation of this file.
1 /*============================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef mitkDICOMEnums_h
14 #define mitkDICOMEnums_h
15 
16 #include <string>
17 #include <vector>
18 #include <utility>
19 
20 namespace mitk
21 {
22  typedef std::vector<std::string> StringList;
23  typedef std::vector<bool> BoolList;
24 
31  typedef enum
32  {
37 
48  typedef enum
49  {
56 
57 
62 }
63 
64 #endif
ReaderImplementationLevel
Describes how well the reader is tested for a certain file type (see mitk::DICOMFileReader).
PixelSpacingInterpretation
How the mitk::Image spacing should be interpreted (see mitk::DICOMFileReader).
@ SOPClassSupported
loader code and tests are established
@ SOPClassUnknown
loader did not yet inspect any images, unknown fitness
@ SOPClassImplemented
loader code is implemented but not accompanied by tests
@ SOPClassPartlySupported
loader code and tests are established for specific parts of a SOP Class
@ SOPClassUnsupported
loader code is not known to work with this SOP Class
@ SpacingAtDetector
distances are mm at detector surface
@ SpacingUnknown
NO spacing information is present, we use (1,1) as default.
@ SpacingInPatient
distances are mm within a patient
Find image slices visible on a given plane.
std::vector< std::string > StringList
std::string PixelSpacingInterpretationToString(const PixelSpacingInterpretation &value)
Convert mitk::PixelSpacingInterpretation to a human readable string.
std::string ReaderImplementationLevelToString(const ReaderImplementationLevel &enumValue)
Convert mitk::ReaderImplementationLevel to a human readable string.
std::vector< bool > BoolList