VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkImageIdealHighPass.h 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 "vtkImagingFourierModule.h" // For export macro 00038 #include "vtkThreadedImageAlgorithm.h" 00039 00040 class VTKIMAGINGFOURIER_EXPORT vtkImageIdealHighPass : public vtkThreadedImageAlgorithm 00041 { 00042 public: 00043 static vtkImageIdealHighPass *New(); 00044 vtkTypeMacro(vtkImageIdealHighPass,vtkThreadedImageAlgorithm); 00045 void PrintSelf(ostream& os, vtkIndent indent); 00046 00048 00051 vtkSetVector3Macro(CutOff,double); 00052 void SetCutOff(double v) {this->SetCutOff(v, v, v);} 00053 void SetXCutOff(double v); 00054 void SetYCutOff(double v); 00055 void SetZCutOff(double v); 00056 vtkGetVector3Macro(CutOff,double); 00057 double GetXCutOff() {return this->CutOff[0];} 00058 double GetYCutOff() {return this->CutOff[1];} 00059 double GetZCutOff() {return this->CutOff[2];} 00061 00062 protected: 00063 vtkImageIdealHighPass(); 00064 ~vtkImageIdealHighPass() {}; 00065 00066 double CutOff[3]; 00067 00068 void ThreadedRequestData(vtkInformation *request, 00069 vtkInformationVector **inputVector, 00070 vtkInformationVector *outputVector, 00071 vtkImageData ***inData, vtkImageData **outData, 00072 int outExt[6], int id); 00073 private: 00074 vtkImageIdealHighPass(const vtkImageIdealHighPass&); // Not implemented. 00075 void operator=(const vtkImageIdealHighPass&); // Not implemented. 00076 }; 00077 00078 #endif