00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
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
00048 virtual void GenerateData();
00049 void PrintSelf(std::ostream& os,Indent indent);
00050 virtual bool FullMatrix();
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&);
00064 void operator=(const Self&);
00065 };
00066
00067 }
00068
00069 #ifndef ITK_MANUAL_INSTANTIATION
00070 #include "itkSCSLRealToComplexConjugateImageFilter.txx"
00071 #endif
00072 #endif // USE_SCSL
00073 #endif