ITK  4.8.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 >
41  public ComplexToComplexFFTImageFilter< TImage >
42 {
43 public:
49 
50  typedef TImage ImageType;
51  typedef typename ImageType::PixelType PixelType;
54  typedef typename OutputImageType::RegionType OutputImageRegionType;
55 
57  itkNewMacro(Self);
58 
62 
63  itkStaticConstMacro(ImageDimension, unsigned int,
64  ImageType::ImageDimension);
65 
66 protected:
69 
70  virtual void BeforeThreadedGenerateData() ITK_OVERRIDE;
71  virtual void ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread, ThreadIdType itkNotUsed(threadId) ) ITK_OVERRIDE;
72 
73 private:
74  VnlComplexToComplexFFTImageFilter(const Self&); //purposely not implemented
75  void operator=(const Self&); //purposely not implemented
76 };
77 
78 } // end namespace itk
79 
80 #ifndef ITK_MANUAL_INSTANTIATION
81 #include "itkVnlComplexToComplexFFTImageFilter.hxx"
82 #endif
83 
84 #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
virtual void ThreadedGenerateData(const OutputImageRegionType &outputRegionForThread, ThreadIdType) override
virtual void BeforeThreadedGenerateData() override