VTK  9.3.0
vtkImageButterworthHighPass.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
31#ifndef vtkImageButterworthHighPass_h
32#define vtkImageButterworthHighPass_h
33
34#include "vtkImagingFourierModule.h" // For export macro
36
37VTK_ABI_NAMESPACE_BEGIN
38class VTKIMAGINGFOURIER_EXPORT vtkImageButterworthHighPass : public vtkThreadedImageAlgorithm
39{
40public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
46
51 vtkSetVector3Macro(CutOff, double);
52 void SetCutOff(double v) { this->SetCutOff(v, v, v); }
53 void SetXCutOff(double cutOff);
54 void SetYCutOff(double cutOff);
55 void SetZCutOff(double cutOff);
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
66 vtkSetMacro(Order, int);
67 vtkGetMacro(Order, int);
69
70protected:
72 ~vtkImageButterworthHighPass() override = default;
73
74 int Order;
75 double CutOff[3];
76
78 vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
79 int outExt[6], int id) override;
80
81private:
83 void operator=(const vtkImageButterworthHighPass&) = delete;
84};
85
86VTK_ABI_NAMESPACE_END
87#endif
void SetXCutOff(double cutOff)
Set/Get the cutoff frequency for each axis.
double GetZCutOff()
Set/Get the cutoff frequency for each axis.
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,...
void SetZCutOff(double cutOff)
Set/Get the cutoff frequency for each axis.
void SetCutOff(double v)
Set/Get the cutoff frequency for each axis.
double GetYCutOff()
Set/Get the cutoff frequency for each axis.
double GetXCutOff()
Set/Get the cutoff frequency for each axis.
static vtkImageButterworthHighPass * New()
void SetYCutOff(double cutOff)
Set/Get the cutoff frequency for each axis.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkImageButterworthHighPass() override=default
topologically and geometrically regular array of data
a simple class to control print indentation
Definition vtkIndent.h:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.