VTK
vtkImageIdealLowPass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageIdealLowPass.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
33 #ifndef __vtkImageIdealLowPass_h
34 #define __vtkImageIdealLowPass_h
35 
36 
38 
40 {
41 public:
42  static vtkImageIdealLowPass *New();
44  void PrintSelf(ostream& os, vtkIndent indent);
45 
47 
50  vtkSetVector3Macro(CutOff,double);
51  void SetCutOff(double v) {this->SetCutOff(v, v, v);}
52  void SetXCutOff(double v);
53  void SetYCutOff(double v);
54  void SetZCutOff(double v);
55  vtkGetVector3Macro(CutOff,double);
56  double GetXCutOff() {return this->CutOff[0];}
57  double GetYCutOff() {return this->CutOff[1];}
58  double GetZCutOff() {return this->CutOff[2];}
60 
61 protected:
64 
65  double CutOff[3];
66 
67  void ThreadedRequestData(vtkInformation *request,
68  vtkInformationVector **inputVector,
69  vtkInformationVector *outputVector,
70  vtkImageData ***inData, vtkImageData **outData,
71  int outExt[6], int id);
72 private:
73  vtkImageIdealLowPass(const vtkImageIdealLowPass&); // Not implemented.
74  void operator=(const vtkImageIdealLowPass&); // Not implemented.
75 };
76 
77 #endif
78 
79 
80