RTK  2.5.0
Reconstruction Toolkit
rtkGeometricPhantomFileReader.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 rtkGeometricPhantomFileReader_h
20 #define rtkGeometricPhantomFileReader_h
21 
22 #include "RTKExport.h"
23 #include <itkLightProcessObject.h>
24 #include "rtkGeometricPhantom.h"
25 
26 namespace rtk
27 {
28 
40 {
41 public:
42  ITK_DISALLOW_COPY_AND_MOVE(GeometricPhantomFileReader);
43 
49 
52 
54  itkNewMacro(Self);
55 
57 #ifdef itkOverrideGetNameOfClassMacro
58  itkOverrideGetNameOfClassMacro(GeometricPhantomFileReader);
59 #else
61 #endif
62 
63 
65  itkGetModifiableObjectMacro(GeometricPhantom, GeometricPhantom);
66  itkSetObjectMacro(GeometricPhantom, GeometricPhantom);
68 
70  itkGetStringMacro(Filename);
71  itkSetStringMacro(Filename);
73 
75  virtual void
76  GenerateOutputInformation();
77 
78 protected:
80  GeometricPhantomFileReader() = default;
81 
83  ~GeometricPhantomFileReader() override = default;
84 
85 private:
87  std::string m_Filename;
88 };
89 
90 } // end namespace rtk
91 
92 #endif
Container for a geometric phantom, i.e., a set of ConvexShapes.
itk::SmartPointer< Self > Pointer
Reads configuration file in a user-defined file format.