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

vtkImageIdealLowPass.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkImageIdealLowPass.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 =========================================================================*/
00045 #ifndef __vtkImageIdealLowPass_h
00046 #define __vtkImageIdealLowPass_h
00047 
00048 
00049 #include "vtkImageToImageFilter.h"
00050 
00051 class VTK_IMAGING_EXPORT vtkImageIdealLowPass : public vtkImageToImageFilter
00052 {
00053 public:
00054   static vtkImageIdealLowPass *New();
00055   vtkTypeRevisionMacro(vtkImageIdealLowPass,vtkImageToImageFilter);
00056   void PrintSelf(ostream& os, vtkIndent indent);
00057 
00059 
00062   vtkSetVector3Macro(CutOff,double);
00063   void SetCutOff(double v) {this->SetCutOff(v, v, v);}
00064   void SetXCutOff(double v);
00065   void SetYCutOff(double v);
00066   void SetZCutOff(double v);
00067   vtkGetVector3Macro(CutOff,double);
00068   double GetXCutOff() {return this->CutOff[0];}
00069   double GetYCutOff() {return this->CutOff[1];}
00070   double GetZCutOff() {return this->CutOff[2];}
00072 
00073 protected:
00074   vtkImageIdealLowPass();
00075   ~vtkImageIdealLowPass() {};
00076 
00077   double CutOff[3];
00078   
00079   void ThreadedExecute(vtkImageData *inData, vtkImageData *outData,
00080                        int outExt[6], int id);
00081 private:
00082   vtkImageIdealLowPass(const vtkImageIdealLowPass&);  // Not implemented.
00083   void operator=(const vtkImageIdealLowPass&);  // Not implemented.
00084 };
00085 
00086 #endif
00087 
00088 
00089