VTK  9.3.20240418
vtkImageIdealHighPass.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
51 #ifndef vtkImageIdealHighPass_h
52 #define vtkImageIdealHighPass_h
53 
54 #include "vtkImagingFourierModule.h" // For export macro
56 
57 VTK_ABI_NAMESPACE_BEGIN
58 class VTKIMAGINGFOURIER_EXPORT vtkImageIdealHighPass : public vtkThreadedImageAlgorithm
59 {
60 public:
63  void PrintSelf(ostream& os, vtkIndent indent) override;
64 
66 
71  vtkSetVector3Macro(CutOff, double);
72  void SetCutOff(double v) { this->SetCutOff(v, v, v); }
73  void SetXCutOff(double cutOff);
74  void SetYCutOff(double cutOff);
75  void SetZCutOff(double cutOff);
76  vtkGetVector3Macro(CutOff, double);
77  double GetXCutOff() { return this->CutOff[0]; }
78  double GetYCutOff() { return this->CutOff[1]; }
79  double GetZCutOff() { return this->CutOff[2]; }
81 
82 protected:
84  ~vtkImageIdealHighPass() override = default;
85 
86  double CutOff[3];
87 
89  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
90  int outExt[6], int id) override;
91 
92 private:
94  void operator=(const vtkImageIdealHighPass&) = delete;
95 };
96 
97 VTK_ABI_NAMESPACE_END
98 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:156
Simple frequency domain band pass.
void SetXCutOff(double cutOff)
Set/Get the cutoff frequency for each axis.
void SetZCutOff(double cutOff)
Set/Get the cutoff frequency for each axis.
static vtkImageIdealHighPass * New()
~vtkImageIdealHighPass() override=default
double GetYCutOff()
Set/Get the cutoff frequency for each axis.
void SetCutOff(double v)
Set/Get the cutoff frequency for each axis.
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.
double GetXCutOff()
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,...
a simple class to control print indentation
Definition: vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.