Go to the documentation of this file.
18 #ifndef sitkFFTShiftImageFilter_h
19 #define sitkFFTShiftImageFilter_h
70 SITK_RETURN_SELF_TYPE_HEADER
SetInverse (
bool Inverse ) { this->m_Inverse = Inverse;
return *
this; }
73 SITK_RETURN_SELF_TYPE_HEADER
InverseOn() {
return this->SetInverse(
true); }
74 SITK_RETURN_SELF_TYPE_HEADER
InverseOff() {
return this->SetInverse(
false); }
82 std::string
GetName()
const {
return std::string (
"FFTShiftImageFilter"); }
85 std::string ToString()
const;
97 template <
class TImageType>
Image ExecuteInternal (
const Image& image1 );
106 bool m_Inverse{
false};
The Image class for SimpleITK.
typelist::Append< typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type, VectorPixelIDTypeList >::Type NonLabelPixelIDTypeList
Self & SetInverse(bool Inverse)
std::string GetName() const
Image(Self::*)(const Image &image1) MemberFunctionType
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
#define SITKBasicFilters_EXPORT
The base interface for SimpleITK filters that take one input image.
NonLabelPixelIDTypeList PixelIDTypeList
Shift the zero-frequency components of a Fourier transform to the center of the image.
Image FFTShift(const Image &image1, bool inverse=false)
Shift the zero-frequency components of a Fourier transform to the center of the image.