RTK  2.6.0
Reconstruction Toolkit
rtkThreeDCircularProjectionGeometryXMLFileReader.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright RTK Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * https://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 
19 #ifndef rtkThreeDCircularProjectionGeometryXMLFileReader_h
20 #define rtkThreeDCircularProjectionGeometryXMLFileReader_h
21 
22 #ifdef _MSC_VER
23 # pragma warning(disable : 4786)
24 #endif
25 
26 #include <itkXMLFile.h>
28 #include "RTKExport.h"
29 
30 namespace rtk
31 {
32 
44 class RTK_EXPORT ThreeDCircularProjectionGeometryXMLFileReader : public itk::XMLReader<ThreeDCircularProjectionGeometry>
45 {
46 public:
47  ITK_DISALLOW_COPY_AND_MOVE(ThreeDCircularProjectionGeometryXMLFileReader);
48 
53 
57 
59  static const unsigned int CurrentVersion = 3;
60 
62  itkOverrideGetNameOfClassMacro(ThreeDCircularProjectionGeometryXMLFileReader);
63 
65  itkNewMacro(Self);
66 
68  int
69  CanReadFile(const char * name) override;
70 
72  itkGetModifiableObjectMacro(Geometry, GeometryType);
73 
74 protected:
77 
81  void
82  StartElement(const char * name, const char ** atts) override;
83 
84  void
85  StartElement(const char * name);
86 
87  void
88  EndElement(const char * name) override;
89 
90  void
91  CharacterDataHandler(const char * inData, int inLength) override;
92 
93 private:
94  GeometryPointer m_Geometry{ GeometryType::New() };
95 
96  std::string m_CurCharacterData{ "" };
97 
99  double m_InPlaneAngle{ 0. };
100  double m_OutOfPlaneAngle{ 0. };
101  double m_GantryAngle{ 0. };
102  double m_SourceToIsocenterDistance{ 0. };
103  double m_SourceOffsetX{ 0. };
104  double m_SourceOffsetY{ 0. };
105  double m_SourceToDetectorDistance{ 0. };
106  double m_ProjectionOffsetX{ 0. };
107  double m_ProjectionOffsetY{ 0. };
108  double m_CollimationUInf{ std::numeric_limits<double>::max() };
109  double m_CollimationUSup{ std::numeric_limits<double>::max() };
110  double m_CollimationVInf{ std::numeric_limits<double>::max() };
111  double m_CollimationVSup{ std::numeric_limits<double>::max() };
113 
116 
118  unsigned int m_Version{ 0 };
119 };
120 
127  ReadGeometry(const std::string & filename);
128 
129 } // namespace rtk
130 #endif
typename itk::Matrix< double, TDimension, TDimension+1 > MatrixType
Projection geometry for a source and a 2-D flat panel.
RTK_EXPORT ThreeDCircularProjectionGeometry::Pointer ReadGeometry(const std::string &filename)