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: 2003/11/11 21:46:57 $ 00007 Version: $Revision: 1.1 $ 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 __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 Dimension = 3> 00029 class SCSLRealToComplexConjugateImageFilter : 00030 public FFTRealToComplexConjugateImageFilter<TPixel,Dimension> 00031 { 00032 public: 00034 typedef SCSLRealToComplexConjugateImageFilter Self; 00035 typedef FFTRealToComplexConjugateImageFilter<TPixel,Dimension> 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 { 00056 } 00057 ~SCSLRealToComplexConjugateImageFilter() 00058 { 00059 } 00060 void PrintSelf(std::ostream& os, Indent indent) const; 00061 00062 private: 00063 SCSLRealToComplexConjugateImageFilter(const Self&); //purposely not implemented 00064 void operator=(const Self&); //purposely not implemented 00065 }; 00066 00067 } 00068 00069 #ifndef ITK_MANUAL_INSTANTIATION 00070 #include "itkSCSLRealToComplexConjugateImageFilter.txx" 00071 #endif 00072 #endif // USE_SCSL 00073 #endif

Generated at Sun Apr 1 02:43:21 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000