Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
Imaging/vtkImageButterworthHighPass.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00049 #ifndef __vtkImageButterworthHighPass_h
00050 #define __vtkImageButterworthHighPass_h
00051
00052
00053 #include "vtkImageToImageFilter.h"
00054
00055 class VTK_IMAGING_EXPORT vtkImageButterworthHighPass : public vtkImageToImageFilter
00056 {
00057 public:
00058 static vtkImageButterworthHighPass *New();
00059 vtkTypeRevisionMacro(vtkImageButterworthHighPass,vtkImageToImageFilter);
00060 void PrintSelf(ostream& os, vtkIndent indent);
00061
00063
00066 vtkSetVector3Macro(CutOff,float);
00067 void SetCutOff(float v) {this->SetCutOff(v, v, v);}
00068 void SetXCutOff(float v);
00069 void SetYCutOff(float v);
00070 void SetZCutOff(float v);
00071 vtkGetVector3Macro(CutOff,float);
00072 float GetXCutOff() {return this->CutOff[0];}
00073 float GetYCutOff() {return this->CutOff[1];}
00074 float GetZCutOff() {return this->CutOff[2];}
00076
00078
00079 vtkSetMacro(Order, int);
00080 vtkGetMacro(Order, int);
00082
00083 protected:
00084 vtkImageButterworthHighPass();
00085 ~vtkImageButterworthHighPass() {};
00086
00087 int Order;
00088 float CutOff[3];
00089
00090 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00091 int outExt[6], int id);
00092 private:
00093 vtkImageButterworthHighPass(const vtkImageButterworthHighPass&);
00094 void operator=(const vtkImageButterworthHighPass&);
00095 };
00096
00097 #endif
00098
00099
00100