RTK  2.5.0
Reconstruction Toolkit
rtkDPExtractShroudSignalImageFilter.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 rtkDPExtractShroudSignalImageFilter_h
20 #define rtkDPExtractShroudSignalImageFilter_h
21 
22 #include <itkImageToImageFilter.h>
23 
24 namespace rtk
25 {
37 template <class TInputPixel, class TOutputPixel>
38 class ITK_TEMPLATE_EXPORT DPExtractShroudSignalImageFilter
39  : public itk::ImageToImageFilter<itk::Image<TInputPixel, 2>, itk::Image<TOutputPixel, 1>>
40 {
41 public:
42  ITK_DISALLOW_COPY_AND_MOVE(DPExtractShroudSignalImageFilter);
43 
51 
53  static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
54  static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
55  static constexpr unsigned int ImageDimension = TOutputImage::ImageDimension;
56 
58  itkNewMacro(Self);
59 
61 #ifdef itkOverrideGetNameOfClassMacro
62  itkOverrideGetNameOfClassMacro(DPExtractShroudSignalImageFilter);
63 #else
65 #endif
66 
67 
69  itkGetMacro(Amplitude, double);
70  itkSetMacro(Amplitude, double);
72 
73 protected:
75  ~DPExtractShroudSignalImageFilter() override = default;
76 
77  void
78  GenerateOutputInformation() override;
79  void
80  GenerateInputRequestedRegion() override;
81  void
82  GenerateData() override;
83 
84 private:
85  double m_Amplitude{ 0. };
86 
87 }; // end of class
88 
89 } // end of namespace rtk
90 
91 #ifndef ITK_MANUAL_INSTANTIATION
92 # include "rtkDPExtractShroudSignalImageFilter.hxx"
93 #endif
94 
95 #endif // ! rtkDPExtractShroudSignalImageFilter_h
#define itkSetMacro(name, type)
Extract the signal corresponding to the breathing motion (1D) from a shroud image (2D)...