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

dox/Imaging/vtkImageIdealHighPass.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkImageIdealHighPass.h,v $ 00005 00006 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen 00007 All rights reserved. 00008 See Copyright.txt or http://www.kitware.com/Copyright.htm for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00033 #ifndef __vtkImageIdealHighPass_h 00034 #define __vtkImageIdealHighPass_h 00035 00036 00037 #include "vtkImageToImageFilter.h" 00038 00039 class VTK_IMAGING_EXPORT vtkImageIdealHighPass : public vtkImageToImageFilter 00040 { 00041 public: 00042 static vtkImageIdealHighPass *New(); 00043 vtkTypeRevisionMacro(vtkImageIdealHighPass,vtkImageToImageFilter); 00044 void PrintSelf(ostream& os, vtkIndent indent); 00045 00047 00050 vtkSetVector3Macro(CutOff,double); 00051 void SetCutOff(double v) {this->SetCutOff(v, v, v);} 00052 void SetXCutOff(double v); 00053 void SetYCutOff(double v); 00054 void SetZCutOff(double v); 00055 vtkGetVector3Macro(CutOff,double); 00056 double GetXCutOff() {return this->CutOff[0];} 00057 double GetYCutOff() {return this->CutOff[1];} 00058 double GetZCutOff() {return this->CutOff[2];} 00060 00061 protected: 00062 vtkImageIdealHighPass(); 00063 ~vtkImageIdealHighPass() {}; 00064 00065 double CutOff[3]; 00066 00067 void ThreadedExecute(vtkImageData *inData, vtkImageData *outData, 00068 int outExt[6], int id); 00069 private: 00070 vtkImageIdealHighPass(const vtkImageIdealHighPass&); // Not implemented. 00071 void operator=(const vtkImageIdealHighPass&); // Not implemented. 00072 }; 00073 00074 #endif 00075 00076 00077