ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkVnlComplexToComplexFFTImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software 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  * http://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 itkVnlComplexToComplexFFTImageFilter_h
19 #define itkVnlComplexToComplexFFTImageFilter_h
20 
22 
23 namespace itk
24 {
39 template< typename TImage >
40 class ITK_TEMPLATE_EXPORT VnlComplexToComplexFFTImageFilter:
41  public ComplexToComplexFFTImageFilter< TImage >
42 {
43 public:
49 
50  typedef TImage ImageType;
51  typedef typename ImageType::PixelType PixelType;
52  typedef typename Superclass::InputImageType InputImageType;
53  typedef typename Superclass::OutputImageType OutputImageType;
54  typedef typename OutputImageType::RegionType OutputImageRegionType;
55 
57  itkNewMacro(Self);
58 
62 
63  itkStaticConstMacro(ImageDimension, unsigned int,
64  ImageType::ImageDimension);
65 
66 protected:
68  virtual ~VnlComplexToComplexFFTImageFilter() ITK_OVERRIDE {}
69 
70  virtual void BeforeThreadedGenerateData() ITK_OVERRIDE;
71  virtual void ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread, ThreadIdType itkNotUsed(threadId) ) ITK_OVERRIDE;
72 
73 private:
74  ITK_DISALLOW_COPY_AND_ASSIGN(VnlComplexToComplexFFTImageFilter);
75 };
76 
77 } // end namespace itk
78 
79 #ifndef ITK_MANUAL_INSTANTIATION
80 #include "itkVnlComplexToComplexFFTImageFilter.hxx"
81 #endif
82 
83 #endif //itkVnlComplexToComplexFFTImageFilter_h
Light weight base class for most itk classes.
VNL based complex to complex Fast Fourier Transform.
ComplexToComplexFFTImageFilter< TImage > Superclass
Implements an API to enable the Fourier transform or the inverse Fourier transform of images with com...
unsigned int ThreadIdType
Definition: itkIntTypes.h:159