Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkFFTComplexConjugateToRealImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkFFTComplexConjugateToRealImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2006/12/31 14:07:10 $
00007   Version:   $Revision: 1.6 $
00008 
00009   Copyright (c) 2002 Insight Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 #ifndef __itkFFTComplexConjugateToRealImageFilter_h
00018 #define __itkFFTComplexConjugateToRealImageFilter_h
00019 
00020 
00021 #include <itkImageToImageFilter.h>
00022 #include <itkImage.h>
00023 #include <complex>
00024 
00025 namespace itk
00026 {
00033 template < class TPixel,unsigned int Dimension = 3 >
00034 class FFTComplexConjugateToRealImageFilter :
00035     public ImageToImageFilter< Image< std::complex< TPixel > , Dimension >,
00036                                Image< TPixel,Dimension > >
00037 
00038 {
00039 public:
00041   typedef Image< std::complex< TPixel > ,Dimension> TInputImageType;
00042   typedef Image<TPixel,Dimension> TOutputImageType;
00043 
00044   typedef FFTComplexConjugateToRealImageFilter Self;
00045   typedef ImageToImageFilter< TInputImageType, TOutputImageType > Superclass;
00046   typedef SmartPointer<Self> Pointer;
00047   typedef SmartPointer<const Self> constPointer;
00048 
00049   itkStaticConstMacro(ImageDimension, unsigned int,
00050                       TInputImageType::ImageDimension );
00051 
00053   itkTypeMacro(FFTComplexConjugateToRealImageFilter, ImageToImageFilter);
00054 
00060   static Pointer New(void);
00061 
00063   typedef TInputImageType ImageType;
00064   typedef typename ImageType::SizeType ImageSizeType;
00065   virtual void GenerateOutputInformation(); // figure out allocation for output image
00066   virtual void GenerateInputRequestedRegion();
00067   virtual bool FullMatrix() = 0; // must be implemented in child  
00068   void SetActualXDimensionIsOdd(bool isodd) 
00069   { 
00070     m_ActualXDimensionIsOdd = isodd; 
00071   }
00072   void SetActualXDimensionIsOddOn() { 
00073     this->SetActualXDimensionIsOdd(true);
00074   }
00075   void SetActualXDimensionIsOddOff() { 
00076     this->SetActualXDimensionIsOdd(false);
00077   }
00078   bool ActualXDimensionIsOdd() { return m_ActualXDimensionIsOdd; }
00079 protected:
00080   FFTComplexConjugateToRealImageFilter() : m_ActualXDimensionIsOdd(false) {}
00081   virtual ~FFTComplexConjugateToRealImageFilter(){}
00083 
00084 private:
00085   bool m_ActualXDimensionIsOdd;
00086   FFTComplexConjugateToRealImageFilter(const Self&); //purposely not implemented
00087   void operator=(const Self&); //purposely not implemented
00088 };
00089 
00090 } // end namespace itk
00091 
00092 #ifndef ITK_MANUAL_INSTANTIATION
00093 #ifndef __itkVnlFFTComplexConjugateToRealImageFilter_h
00094 #ifndef __itkVnlFFTComplexConjugateToRealImageFilter_txx
00095 #ifndef __itkFFTWComplexConjugateToRealImageFilter_h
00096 #ifndef __itkFFTWComplexConjugateToRealImageFilter_txx
00097 #include "itkFFTComplexConjugateToRealImageFilter.txx"
00098 #endif
00099 #endif
00100 #endif
00101 #endif
00102 #endif
00103 
00104 
00105 #endif
00106 

Generated at Wed Nov 5 21:24:54 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000