Go to the documentation of this file.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 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
00048 virtual void GenerateData();
00049 void PrintSelf(std::ostream& os,Indent indent);
00050 virtual bool FullMatrix();
00051
00052
00053 protected:
00054 SCSLRealToComplexConjugateImageFilter() {}
00055 ~SCSLRealToComplexConjugateImageFilter() {}
00056 void PrintSelf(std::ostream& os, Indent indent) const;
00057
00058 private:
00059 SCSLRealToComplexConjugateImageFilter(const Self&);
00060 void operator=(const Self&);
00061 };
00062
00063 }
00064
00065 #ifndef ITK_MANUAL_INSTANTIATION
00066 #include "itkSCSLRealToComplexConjugateImageFilter.txx"
00067 #endif
00068 #endif // USE_SCSL
00069 #endif
00070