ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
00001 /*========================================================================= 00002 * 00003 * Copyright Insight Software Consortium 00004 * 00005 * Licensed under the Apache License, Version 2.0 (the "License"); 00006 * you may not use this file except in compliance with the License. 00007 * You may obtain a copy of the License at 00008 * 00009 * http://www.apache.org/licenses/LICENSE-2.0.txt 00010 * 00011 * Unless required by applicable law or agreed to in writing, software 00012 * distributed under the License is distributed on an "AS IS" BASIS, 00013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00014 * See the License for the specific language governing permissions and 00015 * limitations under the License. 00016 * 00017 *=========================================================================*/ 00018 #ifndef __itkInverseFFTImageFilter_h 00019 #define __itkInverseFFTImageFilter_h 00020 00021 #include "itkImageToImageFilter.h" 00022 00023 namespace itk 00024 { 00043 template< class TInputImage, class TOutputImage=Image< typename TInputImage::PixelType::value_type, TInputImage::ImageDimension> > 00044 class ITK_EXPORT InverseFFTImageFilter: 00045 public ImageToImageFilter< TInputImage, TOutputImage > 00046 00047 { 00048 public: 00050 typedef TInputImage InputImageType; 00051 typedef typename InputImageType::PixelType InputPixelType; 00052 typedef TOutputImage OutputImageType; 00053 typedef typename OutputImageType::PixelType OutputPixelType; 00054 00055 typedef InverseFFTImageFilter Self; 00056 typedef ImageToImageFilter< InputImageType, OutputImageType > Superclass; 00057 typedef SmartPointer< Self > Pointer; 00058 typedef SmartPointer< const Self > ConstPointer; 00059 00060 itkStaticConstMacro(ImageDimension, unsigned int, 00061 InputImageType::ImageDimension); 00062 00067 static Pointer New(void); 00068 00069 protected: 00070 InverseFFTImageFilter() {} 00071 virtual ~InverseFFTImageFilter(){} 00072 00074 virtual void GenerateInputRequestedRegion(); 00075 00078 void EnlargeOutputRequestedRegion( DataObject *itkNotUsed(output) ); 00079 00080 private: 00081 InverseFFTImageFilter(const Self &); // purposely not implemented 00082 void operator=(const Self &); // purposely not implemented 00083 }; 00084 } // end namespace itk 00085 00086 #ifndef ITK_MANUAL_INSTANTIATION 00087 #ifndef __itkVnlInverseFFTImageFilter_h 00088 #ifndef __itkVnlInverseFFTImageFilter_hxx 00089 #ifndef __itkFFTWInverseFFTImageFilter_h 00090 #ifndef __itkFFTWInverseFFTImageFilter_hxx 00091 #include "itkInverseFFTImageFilter.hxx" 00092 #endif 00093 #endif 00094 #endif 00095 #endif 00096 #endif 00097 00098 #endif 00099