VTK  9.3.0
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
31 #ifndef vtkImageIdealHighPass_h
32 #define vtkImageIdealHighPass_h
33 
34 #include "vtkImagingFourierModule.h" // For export macro
36 
37 VTK_ABI_NAMESPACE_BEGIN
38 class VTKIMAGINGFOURIER_EXPORT vtkImageIdealHighPass : public vtkThreadedImageAlgorithm
39 {
40 public:
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 
62 protected:
64  ~vtkImageIdealHighPass() override = default;
65 
66  double CutOff[3];
67 
69  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
70  int outExt[6], int id) override;
71 
72 private:
74  void operator=(const vtkImageIdealHighPass&) = delete;
75 };
76 
77 VTK_ABI_NAMESPACE_END
78 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:52
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:38
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.