From dcf8d0528ba5d181f8748922fb67d933ff6844fd Mon Sep 17 00:00:00 2001
From: Julien Michel <julien.michel@orfeo-toolbox.org>
Date: Fri, 20 Feb 2015 12:00:19 +0100
Subject: [PATCH] ENH: Modify filter to use the FFT proxy in ITK instead of the
 vnl implementation

---
 .../include/otbForwardFourierMellinTransformImageFilter.h   | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h
index 7c06b5bb24..01ae83efe0 100644
--- a/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h
+++ b/Modules/Feature/Descriptors/include/otbForwardFourierMellinTransformImageFilter.h
@@ -20,7 +20,7 @@
 #define __otbForwardFourierMellinTransformImageFilter_h
 
 #include "otbImage.h"
-#include "itkVnlForwardFFTImageFilter.h"
+#include "itkForwardFFTImageFilter.h"
 #include "otbLogPolarTransform.h"
 #include "itkResampleImageFilter.h"
 #include "itkImageRegionIteratorWithIndex.h"
@@ -35,7 +35,7 @@ namespace otb
  * This class implements a composite filter. It combines two filters :
  *   - otb::LogPolarResampleImageFilter : converting the input image in a
  log-polar system coordinate
- *   - itk::VnlFFTRealToComplexConjugateImageFilter : applying the Forward
+ *   - itk::ForwardFFTImageFilter : applying the Forward
  Fourier transform of the log-polar image.
  *
  * \note the Fourier transform image is coded from 0.0 to 1.0
@@ -59,7 +59,7 @@ public:
   typedef Image<TPixel, Dimension> InputImageType;
   /*   typedef otb::Image< std::complex< TPixel > , Dimension >           OutputImageType; */
 
-  typedef typename itk::VnlForwardFFTImageFilter<InputImageType>                   FourierImageFilterType;
+  typedef typename itk::ForwardFFTImageFilter<InputImageType>                      FourierImageFilterType;
   typedef typename FourierImageFilterType::OutputImageType                         OutputImageType;
 
   /** Standard class typedefs. */
-- 
GitLab