ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkVnlInverseFFTImageFilter.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkVnlInverseFFTImageFilter_h
19#define itkVnlInverseFFTImageFilter_h
20
22
23#if defined(ITK_LEGACY_SILENT)
24# define ITK_VNL_FFT_DEPRECATED
25#else
26# define ITK_VNL_FFT_DEPRECATED \
27 [[deprecated("VnlInverseFFTImageFilter is deprecated; it now routes to itk::PocketFFTInverseFFTImageFilter.")]]
28#endif
29
30#if !defined(ITK_LEGACY_REMOVE) && !defined(ITK_FUTURE_LEGACY_REMOVE)
31namespace itk
32{
43template <typename TInputImage,
44 typename TOutputImage = Image<typename TInputImage::PixelType::value_type, TInputImage::ImageDimension>>
45class ITK_VNL_FFT_DEPRECATED ITK_TEMPLATE_EXPORT VnlInverseFFTImageFilter
46 : public PocketFFTInverseFFTImageFilter<TInputImage, TOutputImage>
47{
48public:
49 ITK_DISALLOW_COPY_AND_MOVE(VnlInverseFFTImageFilter);
50
51 using Self = VnlInverseFFTImageFilter;
52 using Superclass = PocketFFTInverseFFTImageFilter<TInputImage, TOutputImage>;
53 using Pointer = SmartPointer<Self>;
54 using ConstPointer = SmartPointer<const Self>;
55
57 itkNewMacro(Self);
58
60 itkOverrideGetNameOfClassMacro(VnlInverseFFTImageFilter);
61
62protected:
63 VnlInverseFFTImageFilter() = default;
64 ~VnlInverseFFTImageFilter() override = default;
65};
66
68# if defined(__GNUC__) || defined(__clang__)
69# pragma GCC diagnostic push
70# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
71# endif
72template <>
73struct FFTImageFilterTraits<VnlInverseFFTImageFilter> : public FFTImageFilterTraits<PocketFFTInverseFFTImageFilter>
74{};
75# if defined(__GNUC__) || defined(__clang__)
76# pragma GCC diagnostic pop
77# endif
79} // namespace itk
80#endif // !ITK_LEGACY_REMOVE && !ITK_FUTURE_LEGACY_REMOVE
81
82#undef ITK_VNL_FFT_DEPRECATED
83#endif // itkVnlInverseFFTImageFilter_h
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....