VTK
vtkImageButterworthLowPass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageButterworthLowPass.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 vtkImageButterworthLowPass_h
34 #define vtkImageButterworthLowPass_h
35 
36 
37 #include "vtkImagingFourierModule.h" // For export macro
39 
41 {
42 public:
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
48 
51  vtkSetVector3Macro(CutOff,double);
52  void SetCutOff(double v) {this->SetCutOff(v, v, v);}
53  void SetXCutOff(double v);
54  void SetYCutOff(double v);
55  void SetZCutOff(double v);
56  vtkGetVector3Macro(CutOff,double);
57  double GetXCutOff() {return this->CutOff[0];}
58  double GetYCutOff() {return this->CutOff[1];}
59  double GetZCutOff() {return this->CutOff[2];}
61 
63 
64  vtkSetMacro(Order, int);
65  vtkGetMacro(Order, int);
67 
68 
69 protected:
72 
73  int Order;
74  double CutOff[3];
75 
77  vtkInformationVector **inputVector,
78  vtkInformationVector *outputVector,
79  vtkImageData ***inData, vtkImageData **outData,
80  int outExt[6], int id);
81 private:
82  vtkImageButterworthLowPass(const vtkImageButterworthLowPass&); // Not implemented.
83  void operator=(const vtkImageButterworthLowPass&); // Not implemented.
84 };
85 
86 #endif
vtkImageButterworthLowPass::GetZCutOff
double GetZCutOff()
Definition: vtkImageButterworthLowPass.h:59
vtkImageButterworthLowPass
Frequency domain Low pass.
Definition: vtkImageButterworthLowPass.h:41
vtkImageButterworthLowPass::GetXCutOff
double GetXCutOff()
Definition: vtkImageButterworthLowPass.h:57
vtkImageButterworthLowPass::~vtkImageButterworthLowPass
~vtkImageButterworthLowPass()
Definition: vtkImageButterworthLowPass.h:71
vtkImageButterworthLowPass::SetYCutOff
void SetYCutOff(double v)
vtkImageButterworthLowPass::Order
int Order
Definition: vtkImageButterworthLowPass.h:73
vtkSetVector3Macro
#define vtkSetVector3Macro(name, type)
Definition: vtkSetGet.h:287
vtkImageButterworthLowPass::GetYCutOff
double GetYCutOff()
Definition: vtkImageButterworthLowPass.h:58
vtkImageButterworthLowPass::SetXCutOff
void SetXCutOff(double v)
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
VTKIMAGINGFOURIER_EXPORT
#define VTKIMAGINGFOURIER_EXPORT
Definition: vtkImagingFourierModule.h:15
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkThreadedImageAlgorithm
Generic filter that has one input..
Definition: vtkThreadedImageAlgorithm.h:37
vtkgl::v
const GLdouble * v
Definition: vtkgl.h:11595
vtkImageButterworthLowPass::SetZCutOff
void SetZCutOff(double v)
vtkImageButterworthLowPass::New
static vtkImageButterworthLowPass * New()
vtkThreadedImageAlgorithm.h
vtkGetVector3Macro
#define vtkGetVector3Macro(name, type)
Definition: vtkSetGet.h:304
vtkImageButterworthLowPass::vtkImageButterworthLowPass
vtkImageButterworthLowPass()
vtkImageButterworthLowPass::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkImageButterworthLowPass::SetCutOff
void SetCutOff(double v)
Definition: vtkImageButterworthLowPass.h:52
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkImagingFourierModule.h
vtkImageButterworthLowPass::ThreadedRequestData
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int id)
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)