VTK
vtkImageFFT.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageFFT.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 =========================================================================*/
29 #ifndef vtkImageFFT_h
30 #define vtkImageFFT_h
31 
32 
33 #include "vtkImagingFourierModule.h" // For export macro
34 #include "vtkImageFourierFilter.h"
35 
36 class VTKIMAGINGFOURIER_EXPORT vtkImageFFT : public vtkImageFourierFilter
37 {
38 public:
39  static vtkImageFFT *New();
41 
42 protected:
44  ~vtkImageFFT() override {}
45 
47  vtkInformation* out) override;
49  vtkInformation* out) override;
50 
52  vtkInformation* vtkNotUsed( request ),
53  vtkInformationVector** inputVector,
54  vtkInformationVector* vtkNotUsed( outputVector ),
55  vtkImageData ***inDataVec,
56  vtkImageData **outDataVec,
57  int outExt[6],
58  int threadId) override;
59 private:
60  vtkImageFFT(const vtkImageFFT&) = delete;
61  void operator=(const vtkImageFFT&) = delete;
62 };
63 
64 #endif
65 
66 
67 
68 
69 
70 
71 
72 
73 
74 
75 // VTK-HeaderTest-Exclude: vtkImageFFT.h
vtkThreadedImageAlgorithm::ThreadedRequestData
virtual void ThreadedRequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector, vtkImageData ***inData, vtkImageData **outData, int extent[6], int threadId)
If the subclass does not define an Execute method, then the task will be broken up,...
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkImageFourierFilter.h
vtkImageIterateFilter::IterativeRequestUpdateExtent
virtual int IterativeRequestUpdateExtent(vtkInformation *in, vtkInformation *out)
vtkImageFFT
Fast Fourier Transform.
Definition: vtkImageFFT.h:36
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:39
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkAlgorithm::New
static vtkAlgorithm * New()
vtkImageIterateFilter::IterativeRequestInformation
virtual int IterativeRequestInformation(vtkInformation *in, vtkInformation *out)
vtkImageFourierFilter
Superclass that implements complex numbers.
Definition: vtkImageFourierFilter.h:87
vtkImageFFT::vtkImageFFT
vtkImageFFT()
Definition: vtkImageFFT.h:43
vtkImageFFT::~vtkImageFFT
~vtkImageFFT() override
Definition: vtkImageFFT.h:44