You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkImageFourierCenter.h
|
|
|
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
|
All rights reserved.
|
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
PURPOSE. See the above copyright notice for more information.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkImageFourierCenter
|
|
* @brief Shifts constant frequency to center for
|
|
* display.
|
|
*
|
|
* Is used for dispaying images in frequency space. FFT converts spatial
|
|
* images into frequency space, but puts the zero frequency at the origin.
|
|
* This filter shifts the zero frequency to the center of the image.
|
|
* Input and output are assumed to be doubles.
|
|
*/
|
|
|
|
#ifndef vtkImageFourierCenter_h
|
|
#define vtkImageFourierCenter_h
|
|
|
|
#include "vtkImageDecomposeFilter.h"
|
|
#include "vtkImagingFourierModule.h" // For export macro
|
|
|
|
class VTKIMAGINGFOURIER_EXPORT vtkImageFourierCenter : public vtkImageDecomposeFilter
|
|
{
|
|
public:
|
|
static vtkImageFourierCenter* New();
|
|
vtkTypeMacro(vtkImageFourierCenter, vtkImageDecomposeFilter);
|
|
|
|
protected:
|
|
vtkImageFourierCenter();
|
|
~vtkImageFourierCenter() override {}
|
|
|
|
int IterativeRequestUpdateExtent(vtkInformation* in, vtkInformation* out) override;
|
|
|
|
void ThreadedRequestData(vtkInformation* vtkNotUsed(request),
|
|
vtkInformationVector** vtkNotUsed(inputVector), vtkInformationVector* outputVector,
|
|
vtkImageData*** inDataVec, vtkImageData** outDataVec, int outExt[6], int threadId) override;
|
|
|
|
private:
|
|
vtkImageFourierCenter(const vtkImageFourierCenter&) = delete;
|
|
void operator=(const vtkImageFourierCenter&) = delete;
|
|
};
|
|
|
|
#endif
|
|
|
|
// VTK-HeaderTest-Exclude: vtkImageFourierCenter.h
|