dox/Imaging/vtkImageButterworthLowPass.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00037 #ifndef __vtkImageButterworthLowPass_h
00038 #define __vtkImageButterworthLowPass_h
00039
00040
00041 #include "vtkImageToImageFilter.h"
00042
00043 class VTK_IMAGING_EXPORT vtkImageButterworthLowPass : public vtkImageToImageFilter
00044 {
00045 public:
00046 static vtkImageButterworthLowPass *New();
00047 vtkTypeRevisionMacro(vtkImageButterworthLowPass,vtkImageToImageFilter);
00048 void PrintSelf(ostream& os, vtkIndent indent);
00049
00051
00054 vtkSetVector3Macro(CutOff,float);
00055 void SetCutOff(float v) {this->SetCutOff(v, v, v);}
00056 void SetXCutOff(float v);
00057 void SetYCutOff(float v);
00058 void SetZCutOff(float v);
00059 vtkGetVector3Macro(CutOff,float);
00060 float GetXCutOff() {return this->CutOff[0];}
00061 float GetYCutOff() {return this->CutOff[1];}
00062 float GetZCutOff() {return this->CutOff[2];}
00064
00066
00067 vtkSetMacro(Order, int);
00068 vtkGetMacro(Order, int);
00070
00071
00072 protected:
00073 vtkImageButterworthLowPass();
00074 ~vtkImageButterworthLowPass() {};
00075
00076 int Order;
00077 float CutOff[3];
00078
00079 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00080 int outExt[6], int id);
00081 private:
00082 vtkImageButterworthLowPass(const vtkImageButterworthLowPass&);
00083 void operator=(const vtkImageButterworthLowPass&);
00084 };
00085
00086 #endif
00087
00088
00089