VTK  9.0.1
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 =========================================================================*/
31 #ifndef vtkImageButterworthHighPass_h
32 #define vtkImageButterworthHighPass_h
33 
34 #include "vtkImagingFourierModule.h" // For export macro
36 
37 class VTKIMAGINGFOURIER_EXPORT vtkImageButterworthHighPass : public vtkThreadedImageAlgorithm
38 {
39 public:
42  void PrintSelf(ostream& os, vtkIndent indent) override;
43 
45 
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 
65  vtkSetMacro(Order, int);
66  vtkGetMacro(Order, int);
68 
69 protected:
72 
73  int Order;
74  double CutOff[3];
75 
77  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
78  int outExt[6], int id) override;
79 
80 private:
82  void operator=(const vtkImageButterworthHighPass&) = delete;
83 };
84 
85 #endif
vtkImageButterworthHighPass::~vtkImageButterworthHighPass
~vtkImageButterworthHighPass() override
Definition: vtkImageButterworthHighPass.h:71
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:36
vtkImageButterworthHighPass::SetYCutOff
void SetYCutOff(double v)
vtkThreadedImageAlgorithm
Generic filter that has one input.
Definition: vtkThreadedImageAlgorithm.h:38
vtkImageButterworthHighPass::SetZCutOff
void SetZCutOff(double v)
vtkThreadedImageAlgorithm.h
vtkImageButterworthHighPass::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkImageButterworthHighPass::vtkImageButterworthHighPass
vtkImageButterworthHighPass()
vtkImageButterworthHighPass::GetZCutOff
double GetZCutOff()
Definition: vtkImageButterworthHighPass.h:58
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:42
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:34
vtkImageButterworthHighPass
Frequency domain high pass.
Definition: vtkImageButterworthHighPass.h:38
vtkImageButterworthHighPass::GetYCutOff
double GetYCutOff()
Definition: vtkImageButterworthHighPass.h:57
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:65
vtkImageButterworthHighPass::GetXCutOff
double GetXCutOff()
Definition: vtkImageButterworthHighPass.h:56
vtkImageButterworthHighPass::New
static vtkImageButterworthHighPass * New()
vtkImageButterworthHighPass::Order
int Order
Definition: vtkImageButterworthHighPass.h:73
vtkImageButterworthHighPass::SetCutOff
void SetCutOff(double v)
Definition: vtkImageButterworthHighPass.h:51
vtkImageButterworthHighPass::SetXCutOff
void SetXCutOff(double v)
vtkImageButterworthHighPass::ThreadedRequestData
void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int outExt[6], int id) override
If the subclass does not define an Execute method, then the task will be broken up,...