VTK  9.2.6
vtkImageIdealHighPass.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageIdealHighPass.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 =========================================================================*/
63 #ifndef vtkImageIdealHighPass_h
64 #define vtkImageIdealHighPass_h
65 
66 #include "vtkImagingFourierModule.h" // For export macro
68 
69 class VTKIMAGINGFOURIER_EXPORT vtkImageIdealHighPass : public vtkThreadedImageAlgorithm
70 {
71 public:
74  void PrintSelf(ostream& os, vtkIndent indent) override;
75 
77 
82  vtkSetVector3Macro(CutOff, double);
83  void SetCutOff(double v) { this->SetCutOff(v, v, v); }
84  void SetXCutOff(double cutOff);
85  void SetYCutOff(double cutOff);
86  void SetZCutOff(double cutOff);
87  vtkGetVector3Macro(CutOff, double);
88  double GetXCutOff() { return this->CutOff[0]; }
89  double GetYCutOff() { return this->CutOff[1]; }
90  double GetZCutOff() { return this->CutOff[2]; }
92 
93 protected:
95  ~vtkImageIdealHighPass() override = default;
96 
97  double CutOff[3];
98 
100  vtkInformationVector* outputVector, vtkImageData*** inData, vtkImageData** outData,
101  int outExt[6], int id) override;
102 
103 private:
105  void operator=(const vtkImageIdealHighPass&) = delete;
106 };
107 
108 #endif
topologically and geometrically regular array of data
Definition: vtkImageData.h:163
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:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Generic filter that has one input.