ITK  5.4.0
Insight Toolkit
itkFFTWForward1DFFTImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
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 #ifndef itkFFTWForward1DFFTImageFilter_h
19 #define itkFFTWForward1DFFTImageFilter_h
20 
22 #include "itkFFTWCommonExtended.h"
24 
26 
27 #include <vector>
28 
29 
30 namespace itk
31 {
32 
39 template <typename TInputImage,
40  typename TOutputImage = Image<std::complex<typename TInputImage::PixelType>, TInputImage::ImageDimension>>
41 class ITK_TEMPLATE_EXPORT FFTWForward1DFFTImageFilter : public Forward1DFFTImageFilter<TInputImage, TOutputImage>
42 {
43 public:
44  ITK_DISALLOW_COPY_AND_MOVE(FFTWForward1DFFTImageFilter);
45 
50 
52  using InputImageType = typename Superclass::InputImageType;
53  using OutputImageType = typename Superclass::OutputImageType;
55 
64  using PlanArrayType = typename std::vector<typename FFTW1DProxyType::PlanType>;
65  using PlanBufferPointerType = typename std::vector<typename FFTW1DProxyType::ComplexType *>;
66 
68  itkNewMacro(Self);
69 
71  itkOverrideGetNameOfClassMacro(FFTWForward1DFFTImageFilter);
72 
73 
74 protected:
76  ~FFTWForward1DFFTImageFilter() override;
77 
78  void
79  BeforeThreadedGenerateData() override;
80  void
81  ThreadedGenerateData(const OutputImageRegionType &, ThreadIdType threadID) override;
82 
86  GetImageRegionSplitter() const override;
87 
88 
89 private:
90  ImageRegionSplitterDirection::Pointer m_ImageRegionSplitter{};
91 
93  void
94  DestroyPlans();
95 
96  bool m_PlanComputed{ false };
97  PlanArrayType m_PlanArray{};
98  unsigned int m_LastImageSize{ 0 };
99  PlanBufferPointerType m_InputBufferArray{};
100  PlanBufferPointerType m_OutputBufferArray{};
101 };
102 
103 
104 // Describe whether input/output are real- or complex-valued
105 // for factory registration
106 template <>
108 {
109  template <typename TUnderlying>
110  using InputPixelType = TUnderlying;
111  template <typename TUnderlying>
112  using OutputPixelType = std::complex<TUnderlying>;
113  using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
114 };
115 
116 } // namespace itk
117 
118 #ifndef ITK_MANUAL_INSTANTIATION
119 # include "itkFFTWForward1DFFTImageFilter.hxx"
120 #endif
121 
122 #endif // itkFFTWForward1DFFTImageFilter_h
itk::fftw::ComplexToComplexProxy
Definition: itkFFTWCommonExtended.h:45
itkImageRegionSplitterDirection.h
itk::FFTWForward1DFFTImageFilter
only do FFT along one dimension using FFTW as a backend.
Definition: itkFFTWForward1DFFTImageFilter.h:41
itk::FFTWForward1DFFTImageFilter::PlanArrayType
typename std::vector< typename FFTW1DProxyType::PlanType > PlanArrayType
Definition: itkFFTWForward1DFFTImageFilter.h:64
itk::FFTImageFilterTraits
Helper defining pixel traits for templated FFT image filters.
Definition: itkFFTImageFilterFactory.h:42
itk::SmartPointer< Self >
itk::ThreadIdType
unsigned int ThreadIdType
Definition: itkIntTypes.h:99
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itk::FFTWForward1DFFTImageFilter::FFTW1DProxyType
typename fftw::ComplexToComplexProxy< typename TInputImage::PixelType > FFTW1DProxyType
Definition: itkFFTWForward1DFFTImageFilter.h:63
itk::ImageRegionSplitterBase
Divide an image region into several pieces.
Definition: itkImageRegionSplitterBase.h:58
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itkFFTWCommonExtended.h
itkForward1DFFTImageFilter.h
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
itk::ImageSource::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkImageSource.h:92
itk::Forward1DFFTImageFilter
Perform the Fast Fourier Transform, in the forward direction, with real inputs, but only along one di...
Definition: itkForward1DFFTImageFilter.h:44
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkAnnulusOperator.h:24
itk::FFTImageFilterTraits< FFTWForward1DFFTImageFilter >::FilterDimensions
std::integer_sequence< unsigned int, 4, 3, 2, 1 > FilterDimensions
Definition: itkFFTWForward1DFFTImageFilter.h:113
itk::FFTImageFilterTraits< FFTWForward1DFFTImageFilter >::OutputPixelType
std::complex< TUnderlying > OutputPixelType
Definition: itkFFTWForward1DFFTImageFilter.h:112
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:139
itkFFTImageFilterFactory.h
itk::FFTWForward1DFFTImageFilter::PlanBufferPointerType
typename std::vector< typename FFTW1DProxyType::ComplexType * > PlanBufferPointerType
Definition: itkFFTWForward1DFFTImageFilter.h:65
itk::ImageSource::OutputImageType
TOutputImage OutputImageType
Definition: itkImageSource.h:90
itk::FFTImageFilterTraits< FFTWForward1DFFTImageFilter >::InputPixelType
TUnderlying InputPixelType
Definition: itkFFTWForward1DFFTImageFilter.h:110