RTK  2.4.1
Reconstruction Toolkit
rtkReg1DExtractShroudSignalImageFilter.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 rtkReg1DExtractShroudSignalImageFilter_h
20 #define rtkReg1DExtractShroudSignalImageFilter_h
21 
22 #include <itkImageToImageFilter.h>
23 
24 namespace rtk
25 {
37 template <class TInputPixel, class TOutputPixel>
38 class ITK_TEMPLATE_EXPORT Reg1DExtractShroudSignalImageFilter
39  : public itk::ImageToImageFilter<itk::Image<TInputPixel, 2>, itk::Image<TOutputPixel, 1>>
40 {
41 public:
42  ITK_DISALLOW_COPY_AND_MOVE(Reg1DExtractShroudSignalImageFilter);
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 
62 
63 protected:
65  ~Reg1DExtractShroudSignalImageFilter() override = default;
66 
67  void
68  GenerateOutputInformation() override;
69  void
70  GenerateInputRequestedRegion() override;
71  void
72  GenerateData() override;
73 
74 private:
76  TOutputPixel
77  register1D(const RegisterImageType *, const RegisterImageType *);
78 
79 }; // end of class
80 
81 } // end of namespace rtk
82 
83 #ifndef ITK_MANUAL_INSTANTIATION
84 # include "rtkReg1DExtractShroudSignalImageFilter.hxx"
85 #endif
86 
87 #endif // ! rtkReg1DExtractShroudSignalImageFilter_h
Reg1DExtract the signal corresponding to the breathing motion (1D) from a shroud image (2D)...