vtkImageButterworthHighPass.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00045 #ifndef __vtkImageButterworthHighPass_h
00046 #define __vtkImageButterworthHighPass_h
00047
00048
00049 #include "vtkImageToImageFilter.h"
00050
00051 class VTK_IMAGING_EXPORT vtkImageButterworthHighPass : public vtkImageToImageFilter
00052 {
00053 public:
00054 static vtkImageButterworthHighPass *New();
00055 vtkTypeRevisionMacro(vtkImageButterworthHighPass,vtkImageToImageFilter);
00056 void PrintSelf(ostream& os, vtkIndent indent);
00057
00059
00062 vtkSetVector3Macro(CutOff,double);
00063 void SetCutOff(double v) {this->SetCutOff(v, v, v);}
00064 void SetXCutOff(double v);
00065 void SetYCutOff(double v);
00066 void SetZCutOff(double v);
00067 vtkGetVector3Macro(CutOff,double);
00068 double GetXCutOff() {return this->CutOff[0];}
00069 double GetYCutOff() {return this->CutOff[1];}
00070 double GetZCutOff() {return this->CutOff[2];}
00072
00074
00075 vtkSetMacro(Order, int);
00076 vtkGetMacro(Order, int);
00078
00079 protected:
00080 vtkImageButterworthHighPass();
00081 ~vtkImageButterworthHighPass() {};
00082
00083 int Order;
00084 double CutOff[3];
00085
00086 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00087 int outExt[6], int id);
00088 private:
00089 vtkImageButterworthHighPass(const vtkImageButterworthHighPass&);
00090 void operator=(const vtkImageButterworthHighPass&);
00091 };
00092
00093 #endif
00094
00095
00096