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

dox/Imaging/vtkImageIdealLowPass.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkImageIdealLowPass.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 __vtkImageIdealLowPass_h 00038 #define __vtkImageIdealLowPass_h 00039 00040 00041 #include "vtkImageToImageFilter.h" 00042 00043 class VTK_IMAGING_EXPORT vtkImageIdealLowPass : public vtkImageToImageFilter 00044 { 00045 public: 00046 static vtkImageIdealLowPass *New(); 00047 vtkTypeRevisionMacro(vtkImageIdealLowPass,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 00065 protected: 00066 vtkImageIdealLowPass(); 00067 ~vtkImageIdealLowPass() {}; 00068 00069 float CutOff[3]; 00070 00071 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 00072 int outExt[6], int id); 00073 private: 00074 vtkImageIdealLowPass(const vtkImageIdealLowPass&); // Not implemented. 00075 void operator=(const vtkImageIdealLowPass&); // Not implemented. 00076 }; 00077 00078 #endif 00079 00080 00081