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

itkSCSLRealToComplexConjugateImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkSCSLRealToComplexConjugateImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2009-01-26 21:45:57 $
00007   Version:   $Revision: 1.3 $
00008 
00009   Copyright (c) Insight Software 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 __itkSCSLRealToComplexConjugateImageFilter_h
00018 #define __itkSCSLRealToComplexConjugateImageFilter_h
00019 #include "itkFFTRealToComplexConjugateImageFilter.h"
00020 #ifdef USE_SCSL
00021 
00022 #include <complex.h>
00023 
00024 #include <scsl_fft.h>
00025 
00026 namespace itk
00027 {
00028 template <class TPixel, unsigned int VDimension = 3>
00029 class SCSLRealToComplexConjugateImageFilter :
00030     public FFTRealToComplexConjugateImageFilter<TPixel,VDimension>
00031 {
00032 public:
00034   typedef SCSLRealToComplexConjugateImageFilter                   Self;
00035   typedef FFTRealToComplexConjugateImageFilter<TPixel,VDimension> Superclass;
00036   typedef SmartPointer<Self>                                      Pointer;
00037   typedef SmartPointer<const Self>                                ConstPointer;
00038 
00040   itkNewMacro(Self);
00041 
00043   itkTypeMacro(SCSLRealToComplexConjugateImageFilter,
00044                FFTRealToComplexConjugateImageFilter);
00045 
00046   //
00047   // these should be defined in every FFT filter class
00048   virtual void GenerateData();  // generates output from input
00049   void PrintSelf(std::ostream& os,Indent indent);
00050   virtual bool FullMatrix(); // must be implemented in child
00051 
00052 
00053 protected:
00054   SCSLRealToComplexConjugateImageFilter() {}
00055   ~SCSLRealToComplexConjugateImageFilter() {}
00056   void PrintSelf(std::ostream& os, Indent indent) const;
00057 
00058 private:
00059   SCSLRealToComplexConjugateImageFilter(const Self&); //purposely not implemented
00060   void operator=(const Self&); //purposely not implemented
00061 };
00062 
00063 }
00064 
00065 #ifndef ITK_MANUAL_INSTANTIATION
00066 #include "itkSCSLRealToComplexConjugateImageFilter.txx"
00067 #endif
00068 #endif // USE_SCSL
00069 #endif
00070 

Generated at Sat Feb 28 13:30:04 2009 for ITK by doxygen 1.5.6 written by Dimitri van Heesch, © 1997-2000