VTK
vtkImageButterworthHighPass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageButterworthHighPass.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 __vtkImageButterworthHighPass_h
34 #define __vtkImageButterworthHighPass_h
35 
36 
38 
40 {
41 public:
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 
62 
63  vtkSetMacro(Order, int);
64  vtkGetMacro(Order, int);
66 
67 protected:
70 
71  int Order;
72  double CutOff[3];
73 
74  void ThreadedRequestData(vtkInformation *request,
75  vtkInformationVector **inputVector,
76  vtkInformationVector *outputVector,
77  vtkImageData ***inData, vtkImageData **outData,
78  int outExt[6], int id);
79 private:
80  vtkImageButterworthHighPass(const vtkImageButterworthHighPass&); // Not implemented.
81  void operator=(const vtkImageButterworthHighPass&); // Not implemented.
82 };
83 
84 #endif
85 
86 
87