RTK  2.6.0
Reconstruction Toolkit
rtkElektaSynergyGeometryReader.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 rtkElektaSynergyGeometryReader_h
20 #define rtkElektaSynergyGeometryReader_h
21 
22 #include "RTKExport.h"
23 #include <itkLightProcessObject.h>
25 
26 namespace rtk
27 {
28 
40 {
41 public:
42  ITK_DISALLOW_COPY_AND_MOVE(ElektaSynergyGeometryReader);
43 
48 
51 
53  itkOverrideGetNameOfClassMacro(ElektaSynergyGeometryReader);
54 
56  itkNewMacro(Self);
57 
59  itkGetMacro(Geometry, GeometryType::Pointer);
60 
64  itkGetMacro(DicomUID, std::string);
65  itkSetMacro(DicomUID, std::string);
67 
69  itkGetMacro(ImageDbfFileName, std::string);
70  itkSetMacro(ImageDbfFileName, std::string);
72 
74  itkGetMacro(FrameDbfFileName, std::string);
75  itkSetMacro(FrameDbfFileName, std::string);
77 
78 protected:
80 
81 
82 private:
83  std::string
84  GetImageIDFromDicomUID();
85  void
86  GetProjInfoFromDB(const std::string & imageID,
87  std::vector<float> & projAngle,
88  std::vector<float> & projFlexX,
89  std::vector<float> & projFlexY);
90 
91  void
92  GenerateData() override;
93 
95  std::string m_DicomUID;
96  std::string m_ImageDbfFileName;
97  std::string m_FrameDbfFileName;
98 };
99 
100 } // namespace rtk
101 #endif
Projection geometry for a source and a 2-D flat panel.
#define itkSetMacro(name, type)