VTK
vtkImageRFFT.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageRFFT.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 =========================================================================*/
38 #ifndef vtkImageRFFT_h
39 #define vtkImageRFFT_h
40 
41 
42 #include "vtkImagingFourierModule.h" // For export macro
43 #include "vtkImageFourierFilter.h"
44 
45 class VTKIMAGINGFOURIER_EXPORT vtkImageRFFT : public vtkImageFourierFilter
46 {
47 public:
48  static vtkImageRFFT *New();
50 
51 protected:
53  ~vtkImageRFFT() override {}
54 
56  vtkInformation* out) override;
58  vtkInformation* out) override;
59 
61  vtkInformation* vtkNotUsed( request ),
62  vtkInformationVector** inputVector,
63  vtkInformationVector* vtkNotUsed( outputVector ),
64  vtkImageData ***inDataVec,
65  vtkImageData **outDataVec,
66  int outExt[6],
67  int threadId) override;
68 private:
69  vtkImageRFFT(const vtkImageRFFT&) = delete;
70  void operator=(const vtkImageRFFT&) = delete;
71 };
72 
73 #endif
74 
75 
76 
77 
78 
79 
80 
81 
82 
83 
84 // VTK-HeaderTest-Exclude: vtkImageRFFT.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,...
vtkImageRFFT::~vtkImageRFFT
~vtkImageRFFT() override
Definition: vtkImageRFFT.h:53
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkImageFourierFilter.h
vtkImageIterateFilter::IterativeRequestUpdateExtent
virtual int IterativeRequestUpdateExtent(vtkInformation *in, vtkInformation *out)
vtkImageRFFT::vtkImageRFFT
vtkImageRFFT()
Definition: vtkImageRFFT.h:52
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:45
vtkImageRFFT
Reverse Fast Fourier Transform.
Definition: vtkImageRFFT.h:45
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkAlgorithm::New
static vtkAlgorithm * New()
vtkImageIterateFilter::IterativeRequestInformation
virtual int IterativeRequestInformation(vtkInformation *in, vtkInformation *out)
vtkImageFourierFilter
Superclass that implements complex numbers.
Definition: vtkImageFourierFilter.h:87