RTK  2.6.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  itkOverrideGetNameOfClassMacro(BioscanGeometryReader);
68 
70  itkNewMacro(Self);
71 
73  itkGetModifiableObjectMacro(Geometry, GeometryType);
74 
76  using FileNamesContainer = std::vector<std::string>;
77 
80  void
82  {
83  if (m_ProjectionsFileNames != name)
84  {
85  m_ProjectionsFileNames = name;
86  this->Modified();
87  }
88  }
89  const FileNamesContainer &
91  {
92  return m_ProjectionsFileNames;
93  }
95 
96 protected:
97  std::vector<float>
98  GetVectorTagValue(const gdcm::DataSet & ds, itk::uint16_t group, itk::uint16_t element) const;
99  std::string
100  GetStringTagValue(const gdcm::DataSet & ds, itk::uint16_t group, itk::uint16_t element) const;
101  double
102  GetFloatTagValue(const gdcm::DataSet & ds, itk::uint16_t group, itk::uint16_t element) const;
103 
105  : m_Geometry(nullptr) {};
106  ~BioscanGeometryReader() override = default;
107 
108 private:
109  void
110  GenerateData() override;
111 
114 };
115 
116 } // namespace rtk
117 
118 #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