RTK  2.5.0
Reconstruction Toolkit
rtkBioscanGeometryReader.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 rtkBioscanGeometryReader_h
20 #define rtkBioscanGeometryReader_h
21 
22 #include <itkLightProcessObject.h>
24 #include "RTKExport.h"
25 
26 // Trick KWStyle with a first declaration of namespace RTK. Style test would
27 // not pass otherwise on the gdcm namespace.
28 namespace rtk
29 {}
30 
31 // Forward declare class Dataset. This is done to avoid define conflicts in
32 // GDCM with lp_solve
33 namespace gdcm
34 {
35 class DataSet;
36 }
37 
38 namespace rtk
39 {
40 
53 {
54 public:
55  ITK_DISALLOW_COPY_AND_MOVE(BioscanGeometryReader);
56 
61 
65 
67 #ifdef itkOverrideGetNameOfClassMacro
68  itkOverrideGetNameOfClassMacro(BioscanGeometryReader);
69 #else
71 #endif
72 
73 
75  itkNewMacro(Self);
76 
78  itkGetModifiableObjectMacro(Geometry, GeometryType);
79 
81  using FileNamesContainer = std::vector<std::string>;
82 
85  void
87  {
88  if (m_ProjectionsFileNames != name)
89  {
90  m_ProjectionsFileNames = name;
91  this->Modified();
92  }
93  }
94  const FileNamesContainer &
96  {
97  return m_ProjectionsFileNames;
98  }
100 
101 protected:
102  std::vector<float>
103  GetVectorTagValue(const gdcm::DataSet & ds, itk::uint16_t group, itk::uint16_t element) const;
104  std::string
105  GetStringTagValue(const gdcm::DataSet & ds, itk::uint16_t group, itk::uint16_t element) const;
106  double
107  GetFloatTagValue(const gdcm::DataSet & ds, itk::uint16_t group, itk::uint16_t element) const;
108 
110  : m_Geometry(nullptr){};
111  ~BioscanGeometryReader() override = default;
112 
113 private:
114  void
115  GenerateData() override;
116 
119 };
120 
121 } // namespace rtk
122 
123 #endif // rtkBioscanGeometryReader_h
void SetProjectionsFileNames(const FileNamesContainer &name)
Projection geometry for a source and a 2-D flat panel.
std::vector< std::string > FileNamesContainer
const FileNamesContainer & GetProjectionsFileNames() const