RTK  2.6.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  itkOverrideGetNameOfClassMacro(DPExtractShroudSignalImageFilter);
62 
64  itkGetMacro(Amplitude, double);
65  itkSetMacro(Amplitude, double);
67 
68 protected:
70  ~DPExtractShroudSignalImageFilter() override = default;
71 
72  void
73  GenerateOutputInformation() override;
74  void
75  GenerateInputRequestedRegion() override;
76  void
77  GenerateData() override;
78 
79 private:
80  double m_Amplitude{ 0. };
81 
82 }; // end of class
83 
84 } // end of namespace rtk
85 
86 #ifndef ITK_MANUAL_INSTANTIATION
87 # include "rtkDPExtractShroudSignalImageFilter.hxx"
88 #endif
89 
90 #endif // ! rtkDPExtractShroudSignalImageFilter_h
#define itkSetMacro(name, type)
Extract the signal corresponding to the breathing motion (1D) from a shroud image (2D)...