Main Page | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

dox/Imaging/vtkImageButterworthHighPass.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkImageButterworthHighPass.h,v $ 00005 Language: C++ 00006 00007 Copyright (c) 1993-2002 Ken Martin, Will Schroeder, Bill Lorensen 00008 All rights reserved. 00009 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00010 00011 This software is distributed WITHOUT ANY WARRANTY; without even 00012 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00013 PURPOSE. See the above copyright notice for more information. 00014 00015 =========================================================================*/ 00037 #ifndef __vtkImageButterworthHighPass_h 00038 #define __vtkImageButterworthHighPass_h 00039 00040 00041 #include "vtkImageToImageFilter.h" 00042 00043 class VTK_IMAGING_EXPORT vtkImageButterworthHighPass : public vtkImageToImageFilter 00044 { 00045 public: 00046 static vtkImageButterworthHighPass *New(); 00047 vtkTypeRevisionMacro(vtkImageButterworthHighPass,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 protected: 00072 vtkImageButterworthHighPass(); 00073 ~vtkImageButterworthHighPass() {}; 00074 00075 int Order; 00076 float CutOff[3]; 00077 00078 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 00079 int outExt[6], int id); 00080 private: 00081 vtkImageButterworthHighPass(const vtkImageButterworthHighPass&); // Not implemented. 00082 void operator=(const vtkImageButterworthHighPass&); // Not implemented. 00083 }; 00084 00085 #endif 00086 00087 00088