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 #ifdef itkOverrideGetNameOfClassMacro
72  itkOverrideGetNameOfClassMacro(ReorderProjectionsImageFilter);
73 #else
75 #endif
76 
77 
79  itkGetModifiableObjectMacro(OutputGeometry, GeometryType);
80  itkSetConstObjectMacro(InputGeometry, ThreeDCircularProjectionGeometry);
82 
84  itkGetMacro(Permutation, PermutationType);
85  itkSetMacro(Permutation, PermutationType);
87 
89  void
90  SetInputSignal(const std::vector<double> signal);
91  std::vector<double>
92  GetOutputSignal();
94 
95 protected:
97 
98  ~ReorderProjectionsImageFilter() override = default;
99 
101  void
102  VerifyPreconditions() const override;
103 
104  void
105  GenerateOutputInformation() override;
106 
107  void
108  GenerateData() override;
109 
110 private:
114 
116  std::vector<double> m_InputSignal;
117  std::vector<double> m_OutputSignal;
118 
121 
123  std::vector<unsigned int> m_NewIndices;
124 }; // end of class
125 
126 } // end namespace rtk
127 
128 #ifndef ITK_MANUAL_INSTANTIATION
129 # include "rtkReorderProjectionsImageFilter.hxx"
130 #endif
131 
132 #endif
TInputImage InputImageType
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.