RTK  2.6.0
Reconstruction Toolkit
rtkReorderProjectionsImageFilter.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 rtkReorderProjectionsImageFilter_h
20 #define rtkReorderProjectionsImageFilter_h
21 
22 #include <itkInPlaceImageFilter.h>
24 #include "rtkConfiguration.h"
25 
26 namespace rtk
27 {
28 
44 template <class TInputImage, class TOutputImage = TInputImage>
45 class ITK_TEMPLATE_EXPORT ReorderProjectionsImageFilter : public itk::ImageToImageFilter<TInputImage, TOutputImage>
46 {
47 public:
48  ITK_DISALLOW_COPY_AND_MOVE(ReorderProjectionsImageFilter);
49 
52 
56 
58  using InputImageType = TInputImage;
59  using OutputImageType = TOutputImage;
60  using OutputImageRegionType = typename OutputImageType::RegionType;
61  using PermutationType = enum { NONE = 0, SORT = 1, SHUFFLE = 2 };
62 
66 
68  itkNewMacro(Self);
69 
71  itkOverrideGetNameOfClassMacro(ReorderProjectionsImageFilter);
72 
74  itkGetModifiableObjectMacro(OutputGeometry, GeometryType);
75  itkSetConstObjectMacro(InputGeometry, ThreeDCircularProjectionGeometry);
77 
79  itkGetMacro(Permutation, PermutationType);
80  itkSetMacro(Permutation, PermutationType);
82 
84  void
85  SetInputSignal(const std::vector<double> signal);
86  std::vector<double>
87  GetOutputSignal();
89 
90 protected:
92 
93  ~ReorderProjectionsImageFilter() override = default;
94 
96  void
97  VerifyPreconditions() const override;
98 
99  void
100  GenerateOutputInformation() override;
101 
102  void
103  GenerateData() override;
104 
105 private:
109 
111  std::vector<double> m_InputSignal;
112  std::vector<double> m_OutputSignal;
113 
116 
118  std::vector<unsigned int> m_NewIndices;
119 }; // end of class
120 
121 } // end namespace rtk
122 
123 #ifndef ITK_MANUAL_INSTANTIATION
124 # include "rtkReorderProjectionsImageFilter.hxx"
125 #endif
126 
127 #endif
Projection geometry for a source and a 2-D flat panel.
#define itkSetMacro(name, type)
enum { NONE=0, SORT=1, SHUFFLE=2 } PermutationType
typename OutputImageType::RegionType OutputImageRegionType
TOutputImage OutputImageType
Sorts or shuffle projections and geometry inputs.