diff --git a/Code/BasicFilters/otbMatrixImageFilter.txx b/Code/BasicFilters/otbMatrixImageFilter.txx
index b1ac8b6eb4890fdb218bbf22e188afa06557f5e4..06efda1056852853cd9e0ac1399cb64983898c59 100644
--- a/Code/BasicFilters/otbMatrixImageFilter.txx
+++ b/Code/BasicFilters/otbMatrixImageFilter.txx
@@ -106,7 +106,6 @@ void MatrixImageFilter<TInputImage, TOutputImage, TMatrix>::ThreadedGenerateData
 }
 
 
-
 /**
  * Standard "PrintSelf" method
  */
diff --git a/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.h b/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.h
index 372df51f2665c9240bd95bf4835f12bce74c32dd..3feb247f34360c8f10ba4cd160e1d4bf84513dc3 100644
--- a/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.h
+++ b/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.h
@@ -53,7 +53,7 @@ namespace otb
  * DataPoints contain the values of the 64 element descriptor for each key point
  * detected through the pyramidal analysis.
  *
- * Orientation is expressed in degree in the range of [0,360]
+ * Orientation is expressed in degree in the range of [0, 360]
  *
  *  \sa otb::ImageToDeterminantHessianImage
  */
diff --git a/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx b/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx
index 6f47620a6af16eebd01f517cf5d34db9b28bf361..179d74924c53bdb0eda5559aa4213fade6b3314c 100644
--- a/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx
+++ b/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx
@@ -1,712 +1,712 @@
-/*=========================================================================
-
-  Program:   ORFEO Toolbox
-  Language:  C++
-  Date:      $Date$
-  Version:   $Revision$
-
-
-  Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
-  See OTBCopyright.txt for details.
-
-  Copyright (c) CS Systemes d'information. All rights reserved.
-  See CSCopyright.txt 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 notices for more information.
-
-=========================================================================*/
-#ifndef __otbImageToSURFKeyPointSetFilter_txx
-#define __otbImageToSURFKeyPointSetFilter_txx
-
-#include "otbImageToSURFKeyPointSetFilter.h"
-#include "itkCenteredRigid2DTransform.h"
-
-namespace otb
-{
-/**--------------------------------------------------------
- * Constant indexes for neighbors offsets
- --------------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-const typename ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>::OffsetType
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>::m_Offsets[8] =
-  {
-       {{-1, -1}}, //0
-       {{-1, 0}}, //1
-       {{-1, 1}}, //2
-       {{ 0, -1}}, //3
-       {{ 0, 1}}, //4
-       {{ 1, -1}}, //5
-       {{ 1, 0}}, //6
-       {{ 1, 1}}, //7
-  };
-
-/**---------------------------------------------------------
- * Constructor
- ----------------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::ImageToSURFKeyPointSetFilter()
-{
-  m_OctavesNumber = 1;
-  m_ScalesNumber = 3;
-  m_NumberOfPoints = 0;
-  m_DifferentSamplePoints = 0;
-  m_DoHThreshold = 0.03;
-  m_DetHessianFilter = ImageToDetHessianImageType::New();
-}
-
-/*---------------------------------------------------------
- * Destructor.c
- ----------------------------------------------------------*/
-
-template <class TInputImage, class TOutputPointSet>
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::~ImageToSURFKeyPointSetFilter()
-{}
-
-/*-------------------------------------------------------
- * Generate Data
- --------------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-void
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::GenerateData(void)
-{
-  double   k;
-  double   sigma_in = 2.;
-  SizeType radius;
-  SpacingType spacing;
-  /*Output*/
-  OutputPointSetPointerType outputPointSet = this->GetOutput();
-
-  /** Computing the multiplicative factor for scales iteration
-   * scalar used for the wifth of the gaussian
-   */
-  if (m_ScalesNumber > 1) k = (double) std::pow(2.0, (double) (1 / (double) (m_ScalesNumber - 1)));
-  else k = 3;
-
-  /* Computation loop over octaves*/
-  for (int i = 0; i < m_OctavesNumber; i++)
-    {
-
-    sigma_in = 2.;
-    m_ImageList = ImageListType::New();
-        spacing = this->GetInput()->GetSpacing();
-
-    /*--------------------------------------------------------
-    Octave per octave
-    --------------------------------------------------------*/
-    if (i > 0)
-      {
-
-      m_ResampleFilter = ResampleFilterType::New();
-      m_ResampleFilter->SetInput(this->GetInput());
-
-      SizeType size = this->GetInput()->GetLargestPossibleRegion().GetSize();
-      for (int k = 0; k < 2; ++k)
-        size[k] = (unsigned int) floor(size[k] / std::pow(2.0, i));
-      m_ResampleFilter->SetSize(size);
-
-      
-      for (int k = 0; k < 2; ++k)
-        spacing[k] = (spacing[k] * std::pow(2.0, i));
-      m_ResampleFilter->SetOutputSpacing(spacing);
-          /* necessary to handle images where the origin is not (0,0) */
-          m_ResampleFilter->SetOutputOrigin(this->GetInput()->GetOrigin());
-
-      m_ResampleFilter->SetDefaultPixelValue(0);
-      m_ResampleFilter->Update();
-      m_determinantImage = m_ResampleFilter->GetOutput();
-
-      otbGenericMsgDebugMacro(<< "ImageToSURFKeyPointSetFilter:: Size of the image at the octave : " \
-                              << i << " is " \
-                              << m_determinantImage->GetLargestPossibleRegion().GetSize());
-        
-      }
-
-    for (int j = 0; j < m_ScalesNumber; j++)
-      {
-      /** Incrementation of the gaussian width
-       *  the width of the gaussian have to be doubled for
-       *  each iteration over octaves
-       */
-
-      if ((i != 0 && j != 0) || (i == 0  && (i + j != 0)) || (m_ScalesNumber == 1 && i != 0)) sigma_in *= k;
-
-      /**
-       * For each octave, we search for the key points
-       */
-
-      /** Hessian Determinant Image */
-      m_DetHessianFilter = ImageToDetHessianImageType::New();
-
-      if (i == 0) m_DetHessianFilter->SetInput(this->GetInput());
-      else m_DetHessianFilter->SetInput(m_determinantImage);
-
-      m_DetHessianFilter->SetSigma(sigma_in);
-      m_DetHessianFilter->Update();
-      m_determinantImage = m_DetHessianFilter->GetOutput();
-
-      if (i + j == 0)
-        {
-        otbGenericMsgDebugMacro(<< "ImageToSURFKeyPointSetFilter:: Size of the image at the octave : "
-                                << i << " is "
-                                << m_determinantImage->GetLargestPossibleRegion().GetSize());
-        }
-
-      /** For each octave, we fill the imageList for the extremum search*/
-      m_ImageList->PushBack(m_determinantImage);
-      }
-        
-    /*----------------------------------------------------*/
-    /*           extremum  Search over octave's scales    */
-    /*----------------------------------------------------*/
-
-    for (int jj = 1; jj < (int) (m_ImageList->Size() - 1); jj++)
-      {
-      m_ImageCurrent = m_ImageList->GetNthElement(jj);
-      m_ImageMovedPrev = m_ImageList->GetNthElement(jj - 1);
-      m_ImageMovedNext = m_ImageList->GetNthElement(jj + 1);
-
-      /** NeighboorhoodIterator parameters*/
-      radius.Fill(1);
-      NeighborhoodIteratorType it(radius, m_ImageCurrent, m_ImageCurrent->GetLargestPossibleRegion());
-      it.GoToBegin();
-
-      /* NeighboorhoodIterator Adjacents parameters*/
-      NeighborhoodIteratorType itNeighPrev(radius, m_ImageMovedPrev, m_ImageMovedPrev->GetLargestPossibleRegion());
-      itNeighPrev.GoToBegin();
-
-      NeighborhoodIteratorType itNeighNext(radius, m_ImageMovedNext, m_ImageMovedNext->GetLargestPossibleRegion());
-      itNeighNext.GoToBegin();
- 
-      while (!it.IsAtEnd())
-        {
-                /**
-                 * The extremum condition is weak over scales, it allows the cases :
-                 * maxPrev & minCurr & maxNext, minPrev & maxCurr maxNext ,... 
-                 */
-        if (IsLocalExtremum(it.GetNeighborhood())
-            && IsLocalExtremumAround(itNeighPrev.GetNeighborhood(), m_ImageCurrent->GetPixel(it.GetIndex()))
-            && IsLocalExtremumAround(itNeighNext.GetNeighborhood(), m_ImageCurrent->GetPixel(it.GetIndex())))
-          {
-          OutputPointType keyPoint;
-          itNeighPrev.SetLocation(it.GetIndex());
-          itNeighNext.SetLocation(it.GetIndex());
-                  VectorPointType lTranslation(PixelValue(0));
-
-                  /* Approximation de la position */
-                  NeighborhoodIteratorType neighborCurrentScale(it);
-          NeighborhoodIteratorType neighborPreviousScale(itNeighPrev);
-          NeighborhoodIteratorType neighborNextScale(itNeighNext);
-                  bool accepted = false;
-
-          accepted = RefineLocationKeyPoint(neighborCurrentScale,
-                                              neighborPreviousScale,
-                                              neighborNextScale,
-                                                                                          lTranslation);
-
-          OffsetType lTranslateOffset = {{0, 0}};
-                        
-                        
-          lTranslateOffset[0] += static_cast<int>(lTranslation[0] > 0.5);
-          lTranslateOffset[0] += -static_cast<int>(lTranslation[0] < -0.5);
-
-          lTranslateOffset[1] += static_cast<int>(lTranslation[1] > 0.5);
-          lTranslateOffset[1] += -static_cast<int>(lTranslation[1] < -0.5);
-
-          NeighborhoodIteratorType moveIterator = neighborCurrentScale + lTranslateOffset;
-
-          if (moveIterator.InBounds())
-            {
-            // move iterator
-            neighborCurrentScale += lTranslateOffset;
-            neighborPreviousScale += lTranslateOffset;
-            neighborNextScale += lTranslateOffset;
-                        lTranslation[0] -= lTranslateOffset[0];
-                        lTranslation[1] -= lTranslateOffset[1];
-            }
-          else
-            {
-            lTranslation[0] = 0.0;
-                        lTranslation[1] = 0.0;
-            }
-                  
-                  if (accepted == false)
-                  {
-                        ++it;
-                ++itNeighPrev;
-                ++itNeighNext;
-                        continue;
-                  }
-
-
-                  typename InputImageType::IndexType indexKeyPoint;
-                  indexKeyPoint[0] = neighborCurrentScale.GetIndex()[0];
-                  indexKeyPoint[1] = neighborCurrentScale.GetIndex()[1];
-                  
-          double sigmaDetected = sigma_in / pow(k, (double) jj) * pow(2., (double) i);
-
-          radius.Fill(GetMin((int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[0] - indexKeyPoint[0]),
-                             (int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[1] - indexKeyPoint[1]),
-                             (int) (6 * sigmaDetected)));
-
-          /*
-            Computing the orientation of the key point detected
-          */
-          NeighborhoodIteratorType itNeighOrientation(radius, this->GetInput(),
-                                                      this->GetInput()->GetLargestPossibleRegion());
-
-                  itNeighOrientation.SetLocation(neighborCurrentScale.GetIndex());
-                  
-          double orientationDetected = AssignOrientation(itNeighOrientation.GetNeighborhood(), sigmaDetected);
-
-          /*Filling the Point pointSet Part*/
-          typename InputImageType::PointType physicalKeyPoint;
-          m_ImageCurrent->TransformIndexToPhysicalPoint(neighborCurrentScale.GetIndex(), keyPoint);
-                  
-          physicalKeyPoint[0] = keyPoint[0] + spacing[0] * lTranslation[0];
-                  physicalKeyPoint[1] = keyPoint[1] + spacing[1] * lTranslation[1];
-                  
-                  outputPointSet->SetPoint(m_NumberOfPoints, physicalKeyPoint);
-
-          /*----------------------------------------*/
-          /*  Descriptor Computation                */
-          /*----------------------------------------*/
-
-          radius.Fill(GetMin((int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[0] - indexKeyPoint[0]),
-                             (int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[1] - indexKeyPoint[1]),
-                             (int) (10 * sigmaDetected))); // TODO a changer sigmaDetected par Keypoint[2]
-
-          NeighborhoodIteratorType itNeighDescriptor(radius, this->GetInput(),
-                                                     this->GetInput()->GetLargestPossibleRegion());
-          //itNeighDescriptor.SetLocation(it.GetIndex());
-                  itNeighDescriptor.SetLocation(neighborCurrentScale.GetIndex());
-          VectorType descriptor;
-          descriptor.resize(64);
-          //descriptor = ComputeDescriptor(itNeighDescriptor.GetNeighborhood(), keyPoint[3], keyPoint[2]);
-          descriptor = ComputeDescriptor(itNeighDescriptor.GetNeighborhood(), orientationDetected, sigmaDetected);
-
-          /*Updating the pointset data with values of the descriptor*/
-          OutputPixelType data;
-          data.SetSize(64);
-
-          unsigned int IndDescriptor = 0;
-
-          typename std::vector<double>::const_iterator itDescriptor =
-            descriptor.begin();
-
-          while (itDescriptor != descriptor.end())
-            {
-            data.SetElement(IndDescriptor, *itDescriptor);
-            IndDescriptor++;
-            itDescriptor++;
-            }
-          outputPointSet->SetPointData(m_NumberOfPoints, data);
-
-          m_NumberOfPoints++;
-          }
-        ++it;
-        ++itNeighPrev;
-        ++itNeighNext;
-
-        } /*End while for extremum search*/
-
-      } /*End Iteration over scales */
-
-    m_ImageList->Clear();
-
-    } /* End  Key Points search*/
-
-  otbGenericMsgDebugMacro(<< "ImageToSURFKeyPointSetFilter:: Total Number of Key points " \
-                          << m_NumberOfPoints);
-
-} /** End of GenerateData()*/
-
-template <class TInputImage, class TOutputPointSet>
-int
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::GetMin(int a, int b, int c)
-{
-  return std::min(a, std::min(b, c));
-}
-
-/*-----------------------------------------------------------
- * Find Local Extremum
- -----------------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-bool
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::IsLocalExtremum(const NeighborhoodType& neigh)
-{
-  int    centerIndex = neigh.GetCenterNeighborhoodIndex(), i = 0;
-  double centerValue = neigh[centerIndex];
-  bool   max = false, min = false;
-  int    flag_min = 0, flag_max = 0;
-
-  while (i != (int) neigh.Size())
-    {
-    if (i != centerIndex)
-      {
-      if (centerValue > neigh[i] && flag_max == 0) max = true;
-      else
-        {
-        max = false;
-        flag_max = 1;
-        }
-
-      if (centerValue < neigh[i] && flag_min == 0 && centerValue < 0) min = true;
-      else
-        {
-        min = false;
-        flag_min = 1;
-        }
-      }
-    ++i;
-    }
-
-  return max || min;
-}
-
-/*-----------------------------------------------------------
- *Find Local Extremum Around
- -----------------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-bool
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::IsLocalExtremumAround(const NeighborhoodType& neigh, double CenterValue)
-{
-
-  int  i = 0;
-  bool max = false, min = false;
-  int  flag_min = 0, flag_max = 0;
-
-  while (i != (int) neigh.Size())
-    {
-
-    if (CenterValue > neigh[i] && flag_max == 0) max = true;
-    else
-      {
-      max = false;
-      flag_max = 1;
-      }
-
-    if (CenterValue < neigh[i] && flag_min == 0) min = true;
-    else
-      {
-      min = false;
-      flag_min = 1;
-      }
-
-    ++i;
-    }
-
-  return max || min;
-}
-
-/**----------------------------------------------------
- * Refine location key point
- * TODO : adapt the interpolation to the type of extrema
- -----------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-bool
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::RefineLocationKeyPoint(const NeighborhoodIteratorType& currentScale,
-                         const NeighborhoodIteratorType& previousScale,
-                         const NeighborhoodIteratorType& nextScale,
-                         VectorPointType& solution)
-{
-  bool accepted = true;
-  solution = VectorPointType(PixelValue(0));
-
-  PixelValue dx = 0.5 * (currentScale.GetPixel(m_Offsets[6])
-                        - currentScale.GetPixel(m_Offsets[1]));
-
-  PixelValue dy = 0.5 * (currentScale.GetPixel(m_Offsets[4])
-                        - currentScale.GetPixel(m_Offsets[3]));
-
-  PixelValue ds = 0.5 * (nextScale.GetCenterPixel() -
-                        previousScale.GetCenterPixel());
-
-  PixelValue dxx = currentScale.GetPixel(m_Offsets[6])
-                  - 2 * currentScale.GetCenterPixel()
-                  + currentScale.GetPixel(m_Offsets[1]);
-
-  PixelValue dyy = currentScale.GetPixel(m_Offsets[3])
-                  - 2 * currentScale.GetCenterPixel()
-                  + currentScale.GetPixel(m_Offsets[4]);
-
-  PixelValue dss = previousScale.GetCenterPixel()
-                  - 2 * currentScale.GetCenterPixel()
-                  + nextScale.GetCenterPixel();
-
-  PixelValue dxy = 0.25 * (currentScale.GetPixel(m_Offsets[7])
-                          + currentScale.GetPixel(m_Offsets[0])
-                          - currentScale.GetPixel(m_Offsets[2])
-                          - currentScale.GetPixel(m_Offsets[5]));
-
-  PixelValue dxs = 0.25 * (nextScale.GetPixel(m_Offsets[6])
-                          + previousScale.GetPixel(m_Offsets[1])
-                          - nextScale.GetPixel(m_Offsets[1])
-                          - previousScale.GetPixel(m_Offsets[6]));
-
-  PixelValue dys = 0.25 * (nextScale.GetPixel(m_Offsets[4])
-                          + previousScale.GetPixel(m_Offsets[3])
-                          - nextScale.GetPixel(m_Offsets[3])
-                          - previousScale.GetPixel(m_Offsets[4]));
-
-  // We look for the "false" extrema : min-?-max and max-?-min
-  // Those are not compatible with the 3D quadric interpolation 
-  PixelValue curr = currentScale.GetCenterPixel();
-  PixelValue prev = previousScale.GetCenterPixel();
-  PixelValue next = nextScale.GetCenterPixel();
-  if ((prev < curr && curr < next) || (next < curr && curr < prev))
-  {
-        // So we use only 2D interpolation in the current scale
-        dss = 1.0;
-        dxs = 0.0;
-        dys = 0.0;
-        ds = 0.0;
-  }
-
-  // Compute matrice determinant
-  double det = dxx * (dyy * dss - dys * dys) - dxy * (dxy * dss - dxs * dys) + dxs * (dxy * dys - dxs * dyy);
-
-  // Solve system, compute key point offset
-  solution[0] = -dx * (dyy * dss - dys * dys) - dy * (dxs * dys - dxy * dss) - ds * (dxy * dys - dyy * dxs);
-  solution[1] = -dx * (dys * dxs - dss * dxy) - dy * (dxx * dss - dxs * dxs) - ds * (dxs * dxy - dxx * dys);
-  solution[2] = -dx * (dxy * dys - dxs * dyy) - dy * (dxy * dxs - dxx * dys) - ds * (dxx * dyy - dxy * dxy);
-
-  // Compute interpolated value Hessian Determinant for lSolution (determinant factor)
-  PixelValue lDoHInterpolated = det * currentScale.GetCenterPixel() +
-                               0.5 * (dx * solution[0] +
-                                      dy * solution[1] +
-                                      ds * solution[2]);
-
-  PixelValue lHessianTrace2 = (dxx + dyy) * (dxx + dyy);
-  PixelValue lHessianDet = dxx * dyy - dxy * dxy;
-  
-  // DoG threshold : ignore detected extrema if is not sufficiently noticeable
-  accepted = fabs(lDoHInterpolated) > fabs(det * m_DoHThreshold);
-
-  if (!accepted)
-    {
-    //++m_DiscardedKeyPoints; /* not used at the moment */
-    }
-  if (det < 1e-10f)             // this test cancels the shift for every "weak" extrema 
-    {
-    solution.Fill(0);
-    }
-  else
-    {
-    // normalize offset with determinant of derivative matrix
-    solution /= det;
-    }
-  /* check that the translation found is inside a cubic pixel */
-  if (fabs(solution[0]) > 1.0 || fabs(solution[1]) > 1.0 || fabs(solution[2]) > 1.0)
-  {
-        accepted = false;
-        //solution.Fill(0);
-  }
-        
-  return accepted;
-}
-
-/*-----------------------------------------------------------
- * Compute the orientation of The KeyPoint
- -----------------------------------------------------------*/
-
-template <class TInputImage, class TOutputPointSet>
-double
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::AssignOrientation(const NeighborhoodType& neigh, double S)
-{
-
-  int    i = 0;
-  int    pas = ((i + S) - (int) (i + S) > 0.5) ? ((int) S + 1) : (int) S;
-  int    Largeur = 2 * neigh.GetRadius()[0] + 1;         // Width & length of a neighborhood
-  int    rayon = neigh.GetRadius()[0];                   // radius of the neigh
-  int    col, raw;
-  double dist;
-  double w;                                              // weight of the circular gaussian
-
-  OutputPointType pt;
-
-  // Gradient orientation histogram
-  double angle;
-  int    bin        = 0;
-  int    Pi         = 180;
-  int    LengthBin  = 60;
-  int    NbBins     = (2 * Pi / LengthBin);
-  std::vector<double> tab(NbBins*2, 0.);
-
-  while (i < (int) neigh.Size())
-    {
-    col = i % Largeur - rayon;
-    raw = i / Largeur - rayon;
-    dist = vcl_sqrt(static_cast<double>(col * col  + raw * raw));
-    col += rayon;
-    raw += rayon;                           // Backup to the image coordinate axes
-
-    if (dist < 6 * S)
-      {
-      // Haar Wavelets responses accumulated in an histogram with Pi/3 precison
-      if ((col > pas && col < Largeur - pas) && (raw > pas && raw < Largeur - pas))
-        {
-
-        w  = vcl_exp(-((col - rayon) * (col - rayon) + (raw - rayon) * (raw - rayon)) / (2 * 2.5 * 2.5 * S * S));
-        pt[0] = (neigh[(col + pas) + raw * Largeur] - neigh[(col - pas) + raw * Largeur]) * w;
-        pt[1] = (neigh[col + (raw + pas) * Largeur] - neigh[col + (raw - pas) * Largeur]) * w;
-
-        if (pt[0] + pt[1] != 0)
-          {
-          angle = atan(pt[0] / pt[1]) * (Pi / otb::CONST_PI);
-          if (angle < 0) angle += 2 * Pi;
-
-          bin = (int) (angle / LengthBin);
-
-          if (bin <= NbBins - 1  || bin >= 0)
-            {
-            tab[2 * bin]   += pt[0];
-            tab[2 * bin + 1] += pt[1];
-            }
-          }
-        }
-      }
-    i += pas;
-    }
-
- //Find Orientation
-  double indice = 0;
-  double max    = 0;
-  double length = 0;
-
-  // Detecting current point orientation
-  for (int i = 0; i < NbBins * 2; i = i + 2)
-    {
-    length = vcl_sqrt(tab[i] * tab[i] + tab[i + 1] * tab[i + 1]);
-    if (length > max)
-      {
-      max = length;
-      indice = i / 2;
-      }
-    }
-
-  return (indice + 0.5) * LengthBin;
-}
-
-/*-----------------------------------------------------------
- * Compute the descriptor of The KeyPoint
- -----------------------------------------------------------*/
-
-template <class TInputImage, class TOutputPointSet>
-typename ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::VectorType
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::ComputeDescriptor(const NeighborhoodType& neigh, double O, double S)
-{
-
-  typedef itk::CenteredRigid2DTransform<double> TransformType;
-  TransformType::Pointer eulerTransform = TransformType::New();
-  TransformType::ParametersType  ParamVec(5);
-  PointImageType pSrc, pDst;
-  double         angle = O * otb::CONST_PI / 180;
-
-  int    i = 0,  col, raw, Nbin, pas = 1;
-  double xx = 0, yy = 0;
-  double dx, dy, w;
-  int    Largeur = 2 * neigh.GetRadius()[0] + 1;
-  double rayon =  static_cast<double>(Largeur) / 4.;
-  double r = neigh.GetRadius()[0];
-  double dist = 0;
-  double x0 = neigh.GetCenterNeighborhoodIndex() % Largeur;
-  double y0 = neigh.GetCenterNeighborhoodIndex() / Largeur;
-
-  //std::cout << " x0 " << x0 << " y0 "  << y0 << angle << std::endl;
-
-  VectorType descriptorVector;
-  descriptorVector.resize(64);
-
-  /** Parameters of the transformation*/
-  ParamVec[0] = angle;
-  ParamVec[1] = x0;
-  ParamVec[2] = y0;
-  ParamVec[3] = 0;
-  ParamVec[4] = 0;
-  eulerTransform->SetParameters(ParamVec);
-
-  while (i < (int) neigh.Size())
-    {
-    col = i % Largeur;
-    raw = i / Largeur;
-
-    if ((col > pas && col < Largeur - pas) && (raw > pas && raw < Largeur - pas))
-      {
-      double distanceX = (raw - r);
-      double distanceY = (col - r);
-      dist = vcl_sqrt(distanceX * distanceX + distanceY * distanceY);
-
-      if (dist <= r)
-        {
-        /* Transform point to compensate the rotation the orientation */
-        pDst[0] = col;
-        pDst[1] = raw;
-        pSrc = eulerTransform->TransformPoint(pDst);
-
-        /** New Coordinates (rotated) */
-        col = static_cast<int>(vcl_floor(pSrc[0]));
-        raw = static_cast<int>(vcl_floor(pSrc[1]));
-
-        if (raw == 0) raw = +1;
-        if (col == 0) col += 1;
-
-        xx = static_cast<int> (pSrc[1] / rayon);
-        yy = static_cast<int> (pSrc[0] / rayon);
-        Nbin =  static_cast<int> (xx + 4 * yy);
-
-        if (Nbin < 16)           //because 64 descriptor length
-          {
-          double distanceXcompensee_2 = (pSrc[0] - r) * (pSrc[0] - r);
-          double distanceYcompensee_2 = (pSrc[1] - r) * (pSrc[1] - r);
-
-          w = vcl_exp(-(distanceXcompensee_2 + distanceYcompensee_2) / (2 * 3.3 * 3.3 * S * S));
-
-          dx = 0.5 * (neigh[(col + pas) + raw * Largeur] - neigh[(col - pas) + raw * Largeur]) * w;
-          dy = 0.5 * (neigh[col + (raw + pas) * Largeur] - neigh[col + (raw - pas) * Largeur])  * w;
-
-          descriptorVector[4 * Nbin] += dx;
-          descriptorVector[4 * Nbin + 1] += dy;
-          descriptorVector[4 * Nbin + 2] += vcl_abs(dx);
-          descriptorVector[4 * Nbin + 3] += vcl_abs(dy);
-          }
-        }
-      }
-    i++;
-    }
-
-  double accu = 0;
-  for (int i = 0; i < 64; i++)
-    accu += descriptorVector[i] * descriptorVector[i];
-
-  for (int j = 0; j < 64; j++)
-    descriptorVector[j] /= vcl_sqrt(accu);
-
-  return descriptorVector;
-
-}
-
-/*----------------------------------------------------------------
-  PrintSelf
-  -----------------------------------------------------------------*/
-template <class TInputImage, class TOutputPointSet>
-void
-ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
-::PrintSelf(std::ostream& os, itk::Indent indent) const
-{
-  Superclass::PrintSelf(os, indent);
-  os << indent << "Number of Key Points  " << m_NumberOfPoints  << std::endl;
-}
-}
-#endif
+/*=========================================================================
+
+  Program:   ORFEO Toolbox
+  Language:  C++
+  Date:      $Date$
+  Version:   $Revision$
+
+
+  Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
+  See OTBCopyright.txt for details.
+
+  Copyright (c) CS Systemes d'information. All rights reserved.
+  See CSCopyright.txt 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 notices for more information.
+
+=========================================================================*/
+#ifndef __otbImageToSURFKeyPointSetFilter_txx
+#define __otbImageToSURFKeyPointSetFilter_txx
+
+#include "otbImageToSURFKeyPointSetFilter.h"
+#include "itkCenteredRigid2DTransform.h"
+
+namespace otb
+{
+/**--------------------------------------------------------
+ * Constant indexes for neighbors offsets
+ --------------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+const typename ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>::OffsetType
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>::m_Offsets[8] =
+  {
+       {{-1, -1}}, //0
+       {{-1, 0}}, //1
+       {{-1, 1}}, //2
+       {{ 0, -1}}, //3
+       {{ 0, 1}}, //4
+       {{ 1, -1}}, //5
+       {{ 1, 0}}, //6
+       {{ 1, 1}}, //7
+  };
+
+/**---------------------------------------------------------
+ * Constructor
+ ----------------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::ImageToSURFKeyPointSetFilter()
+{
+  m_OctavesNumber = 1;
+  m_ScalesNumber = 3;
+  m_NumberOfPoints = 0;
+  m_DifferentSamplePoints = 0;
+  m_DoHThreshold = 0.03;
+  m_DetHessianFilter = ImageToDetHessianImageType::New();
+}
+
+/*---------------------------------------------------------
+ * Destructor.c
+ ----------------------------------------------------------*/
+
+template <class TInputImage, class TOutputPointSet>
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::~ImageToSURFKeyPointSetFilter()
+{}
+
+/*-------------------------------------------------------
+ * Generate Data
+ --------------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+void
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::GenerateData(void)
+{
+  double   k;
+  double   sigma_in = 2.;
+  SizeType radius;
+  SpacingType spacing;
+  /*Output*/
+  OutputPointSetPointerType outputPointSet = this->GetOutput();
+
+  /** Computing the multiplicative factor for scales iteration
+   * scalar used for the wifth of the gaussian
+   */
+  if (m_ScalesNumber > 1) k = (double) std::pow(2.0, (double) (1 / (double) (m_ScalesNumber - 1)));
+  else k = 3;
+
+  /* Computation loop over octaves*/
+  for (int i = 0; i < m_OctavesNumber; i++)
+    {
+
+    sigma_in = 2.;
+    m_ImageList = ImageListType::New();
+        spacing = this->GetInput()->GetSpacing();
+
+    /*--------------------------------------------------------
+    Octave per octave
+    --------------------------------------------------------*/
+    if (i > 0)
+      {
+
+      m_ResampleFilter = ResampleFilterType::New();
+      m_ResampleFilter->SetInput(this->GetInput());
+
+      SizeType size = this->GetInput()->GetLargestPossibleRegion().GetSize();
+      for (int k = 0; k < 2; ++k)
+        size[k] = (unsigned int) floor(size[k] / std::pow(2.0, i));
+      m_ResampleFilter->SetSize(size);
+
+      
+      for (int k = 0; k < 2; ++k)
+        spacing[k] = (spacing[k] * std::pow(2.0, i));
+      m_ResampleFilter->SetOutputSpacing(spacing);
+          /* necessary to handle images where the origin is not (0, 0) */
+          m_ResampleFilter->SetOutputOrigin(this->GetInput()->GetOrigin());
+
+      m_ResampleFilter->SetDefaultPixelValue(0);
+      m_ResampleFilter->Update();
+      m_determinantImage = m_ResampleFilter->GetOutput();
+
+      otbGenericMsgDebugMacro(<< "ImageToSURFKeyPointSetFilter:: Size of the image at the octave : " \
+                              << i << " is " \
+                              << m_determinantImage->GetLargestPossibleRegion().GetSize());
+        
+      }
+
+    for (int j = 0; j < m_ScalesNumber; j++)
+      {
+      /** Incrementation of the gaussian width
+       *  the width of the gaussian have to be doubled for
+       *  each iteration over octaves
+       */
+
+      if ((i != 0 && j != 0) || (i == 0  && (i + j != 0)) || (m_ScalesNumber == 1 && i != 0)) sigma_in *= k;
+
+      /**
+       * For each octave, we search for the key points
+       */
+
+      /** Hessian Determinant Image */
+      m_DetHessianFilter = ImageToDetHessianImageType::New();
+
+      if (i == 0) m_DetHessianFilter->SetInput(this->GetInput());
+      else m_DetHessianFilter->SetInput(m_determinantImage);
+
+      m_DetHessianFilter->SetSigma(sigma_in);
+      m_DetHessianFilter->Update();
+      m_determinantImage = m_DetHessianFilter->GetOutput();
+
+      if (i + j == 0)
+        {
+        otbGenericMsgDebugMacro(<< "ImageToSURFKeyPointSetFilter:: Size of the image at the octave : "
+                                << i << " is "
+                                << m_determinantImage->GetLargestPossibleRegion().GetSize());
+        }
+
+      /** For each octave, we fill the imageList for the extremum search*/
+      m_ImageList->PushBack(m_determinantImage);
+      }
+        
+    /*----------------------------------------------------*/
+    /*           extremum  Search over octave's scales    */
+    /*----------------------------------------------------*/
+
+    for (int jj = 1; jj < (int) (m_ImageList->Size() - 1); jj++)
+      {
+      m_ImageCurrent = m_ImageList->GetNthElement(jj);
+      m_ImageMovedPrev = m_ImageList->GetNthElement(jj - 1);
+      m_ImageMovedNext = m_ImageList->GetNthElement(jj + 1);
+
+      /** NeighboorhoodIterator parameters*/
+      radius.Fill(1);
+      NeighborhoodIteratorType it(radius, m_ImageCurrent, m_ImageCurrent->GetLargestPossibleRegion());
+      it.GoToBegin();
+
+      /* NeighboorhoodIterator Adjacents parameters*/
+      NeighborhoodIteratorType itNeighPrev(radius, m_ImageMovedPrev, m_ImageMovedPrev->GetLargestPossibleRegion());
+      itNeighPrev.GoToBegin();
+
+      NeighborhoodIteratorType itNeighNext(radius, m_ImageMovedNext, m_ImageMovedNext->GetLargestPossibleRegion());
+      itNeighNext.GoToBegin();
+ 
+      while (!it.IsAtEnd())
+        {
+                /**
+                 * The extremum condition is weak over scales, it allows the cases :
+                 * maxPrev & minCurr & maxNext, minPrev & maxCurr maxNext , ...
+                 */
+        if (IsLocalExtremum(it.GetNeighborhood())
+            && IsLocalExtremumAround(itNeighPrev.GetNeighborhood(), m_ImageCurrent->GetPixel(it.GetIndex()))
+            && IsLocalExtremumAround(itNeighNext.GetNeighborhood(), m_ImageCurrent->GetPixel(it.GetIndex())))
+          {
+          OutputPointType keyPoint;
+          itNeighPrev.SetLocation(it.GetIndex());
+          itNeighNext.SetLocation(it.GetIndex());
+                  VectorPointType lTranslation(PixelValue(0));
+
+                  /* Approximation de la position */
+                  NeighborhoodIteratorType neighborCurrentScale(it);
+          NeighborhoodIteratorType neighborPreviousScale(itNeighPrev);
+          NeighborhoodIteratorType neighborNextScale(itNeighNext);
+                  bool accepted = false;
+
+          accepted = RefineLocationKeyPoint(neighborCurrentScale,
+                                              neighborPreviousScale,
+                                              neighborNextScale,
+                                                                                          lTranslation);
+
+          OffsetType lTranslateOffset = {{0, 0}};
+                        
+                        
+          lTranslateOffset[0] += static_cast<int>(lTranslation[0] > 0.5);
+          lTranslateOffset[0] += -static_cast<int>(lTranslation[0] < -0.5);
+
+          lTranslateOffset[1] += static_cast<int>(lTranslation[1] > 0.5);
+          lTranslateOffset[1] += -static_cast<int>(lTranslation[1] < -0.5);
+
+          NeighborhoodIteratorType moveIterator = neighborCurrentScale + lTranslateOffset;
+
+          if (moveIterator.InBounds())
+            {
+            // move iterator
+            neighborCurrentScale += lTranslateOffset;
+            neighborPreviousScale += lTranslateOffset;
+            neighborNextScale += lTranslateOffset;
+                        lTranslation[0] -= lTranslateOffset[0];
+                        lTranslation[1] -= lTranslateOffset[1];
+            }
+          else
+            {
+            lTranslation[0] = 0.0;
+                        lTranslation[1] = 0.0;
+            }
+                  
+                  if (accepted == false)
+                  {
+                        ++it;
+                ++itNeighPrev;
+                ++itNeighNext;
+                        continue;
+                  }
+
+
+                  typename InputImageType::IndexType indexKeyPoint;
+                  indexKeyPoint[0] = neighborCurrentScale.GetIndex()[0];
+                  indexKeyPoint[1] = neighborCurrentScale.GetIndex()[1];
+                  
+          double sigmaDetected = sigma_in / pow(k, (double) jj) * pow(2., (double) i);
+
+          radius.Fill(GetMin((int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[0] - indexKeyPoint[0]),
+                             (int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[1] - indexKeyPoint[1]),
+                             (int) (6 * sigmaDetected)));
+
+          /*
+            Computing the orientation of the key point detected
+          */
+          NeighborhoodIteratorType itNeighOrientation(radius, this->GetInput(),
+                                                      this->GetInput()->GetLargestPossibleRegion());
+
+                  itNeighOrientation.SetLocation(neighborCurrentScale.GetIndex());
+                  
+          double orientationDetected = AssignOrientation(itNeighOrientation.GetNeighborhood(), sigmaDetected);
+
+          /*Filling the Point pointSet Part*/
+          typename InputImageType::PointType physicalKeyPoint;
+          m_ImageCurrent->TransformIndexToPhysicalPoint(neighborCurrentScale.GetIndex(), keyPoint);
+                  
+          physicalKeyPoint[0] = keyPoint[0] + spacing[0] * lTranslation[0];
+                  physicalKeyPoint[1] = keyPoint[1] + spacing[1] * lTranslation[1];
+                  
+                  outputPointSet->SetPoint(m_NumberOfPoints, physicalKeyPoint);
+
+          /*----------------------------------------*/
+          /*  Descriptor Computation                */
+          /*----------------------------------------*/
+
+          radius.Fill(GetMin((int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[0] - indexKeyPoint[0]),
+                             (int) (this->GetInput()->GetLargestPossibleRegion().GetSize()[1] - indexKeyPoint[1]),
+                             (int) (10 * sigmaDetected))); // TODO a changer sigmaDetected par Keypoint[2]
+
+          NeighborhoodIteratorType itNeighDescriptor(radius, this->GetInput(),
+                                                     this->GetInput()->GetLargestPossibleRegion());
+          //itNeighDescriptor.SetLocation(it.GetIndex());
+                  itNeighDescriptor.SetLocation(neighborCurrentScale.GetIndex());
+          VectorType descriptor;
+          descriptor.resize(64);
+          //descriptor = ComputeDescriptor(itNeighDescriptor.GetNeighborhood(), keyPoint[3], keyPoint[2]);
+          descriptor = ComputeDescriptor(itNeighDescriptor.GetNeighborhood(), orientationDetected, sigmaDetected);
+
+          /*Updating the pointset data with values of the descriptor*/
+          OutputPixelType data;
+          data.SetSize(64);
+
+          unsigned int IndDescriptor = 0;
+
+          typename std::vector<double>::const_iterator itDescriptor =
+            descriptor.begin();
+
+          while (itDescriptor != descriptor.end())
+            {
+            data.SetElement(IndDescriptor, *itDescriptor);
+            IndDescriptor++;
+            itDescriptor++;
+            }
+          outputPointSet->SetPointData(m_NumberOfPoints, data);
+
+          m_NumberOfPoints++;
+          }
+        ++it;
+        ++itNeighPrev;
+        ++itNeighNext;
+
+        } /*End while for extremum search*/
+
+      } /*End Iteration over scales */
+
+    m_ImageList->Clear();
+
+    } /* End  Key Points search*/
+
+  otbGenericMsgDebugMacro(<< "ImageToSURFKeyPointSetFilter:: Total Number of Key points " \
+                          << m_NumberOfPoints);
+
+} /** End of GenerateData()*/
+
+template <class TInputImage, class TOutputPointSet>
+int
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::GetMin(int a, int b, int c)
+{
+  return std::min(a, std::min(b, c));
+}
+
+/*-----------------------------------------------------------
+ * Find Local Extremum
+ -----------------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+bool
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::IsLocalExtremum(const NeighborhoodType& neigh)
+{
+  int    centerIndex = neigh.GetCenterNeighborhoodIndex(), i = 0;
+  double centerValue = neigh[centerIndex];
+  bool   max = false, min = false;
+  int    flag_min = 0, flag_max = 0;
+
+  while (i != (int) neigh.Size())
+    {
+    if (i != centerIndex)
+      {
+      if (centerValue > neigh[i] && flag_max == 0) max = true;
+      else
+        {
+        max = false;
+        flag_max = 1;
+        }
+
+      if (centerValue < neigh[i] && flag_min == 0 && centerValue < 0) min = true;
+      else
+        {
+        min = false;
+        flag_min = 1;
+        }
+      }
+    ++i;
+    }
+
+  return max || min;
+}
+
+/*-----------------------------------------------------------
+ *Find Local Extremum Around
+ -----------------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+bool
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::IsLocalExtremumAround(const NeighborhoodType& neigh, double CenterValue)
+{
+
+  int  i = 0;
+  bool max = false, min = false;
+  int  flag_min = 0, flag_max = 0;
+
+  while (i != (int) neigh.Size())
+    {
+
+    if (CenterValue > neigh[i] && flag_max == 0) max = true;
+    else
+      {
+      max = false;
+      flag_max = 1;
+      }
+
+    if (CenterValue < neigh[i] && flag_min == 0) min = true;
+    else
+      {
+      min = false;
+      flag_min = 1;
+      }
+
+    ++i;
+    }
+
+  return max || min;
+}
+
+/**----------------------------------------------------
+ * Refine location key point
+ * TODO : adapt the interpolation to the type of extrema
+ -----------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+bool
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::RefineLocationKeyPoint(const NeighborhoodIteratorType& currentScale,
+                         const NeighborhoodIteratorType& previousScale,
+                         const NeighborhoodIteratorType& nextScale,
+                         VectorPointType& solution)
+{
+  bool accepted = true;
+  solution = VectorPointType(PixelValue(0));
+
+  PixelValue dx = 0.5 * (currentScale.GetPixel(m_Offsets[6])
+                        - currentScale.GetPixel(m_Offsets[1]));
+
+  PixelValue dy = 0.5 * (currentScale.GetPixel(m_Offsets[4])
+                        - currentScale.GetPixel(m_Offsets[3]));
+
+  PixelValue ds = 0.5 * (nextScale.GetCenterPixel() -
+                        previousScale.GetCenterPixel());
+
+  PixelValue dxx = currentScale.GetPixel(m_Offsets[6])
+                  - 2 * currentScale.GetCenterPixel()
+                  + currentScale.GetPixel(m_Offsets[1]);
+
+  PixelValue dyy = currentScale.GetPixel(m_Offsets[3])
+                  - 2 * currentScale.GetCenterPixel()
+                  + currentScale.GetPixel(m_Offsets[4]);
+
+  PixelValue dss = previousScale.GetCenterPixel()
+                  - 2 * currentScale.GetCenterPixel()
+                  + nextScale.GetCenterPixel();
+
+  PixelValue dxy = 0.25 * (currentScale.GetPixel(m_Offsets[7])
+                          + currentScale.GetPixel(m_Offsets[0])
+                          - currentScale.GetPixel(m_Offsets[2])
+                          - currentScale.GetPixel(m_Offsets[5]));
+
+  PixelValue dxs = 0.25 * (nextScale.GetPixel(m_Offsets[6])
+                          + previousScale.GetPixel(m_Offsets[1])
+                          - nextScale.GetPixel(m_Offsets[1])
+                          - previousScale.GetPixel(m_Offsets[6]));
+
+  PixelValue dys = 0.25 * (nextScale.GetPixel(m_Offsets[4])
+                          + previousScale.GetPixel(m_Offsets[3])
+                          - nextScale.GetPixel(m_Offsets[3])
+                          - previousScale.GetPixel(m_Offsets[4]));
+
+  // We look for the "false" extrema : min-?-max and max-?-min
+  // Those are not compatible with the 3D quadric interpolation
+  PixelValue curr = currentScale.GetCenterPixel();
+  PixelValue prev = previousScale.GetCenterPixel();
+  PixelValue next = nextScale.GetCenterPixel();
+  if ((prev < curr && curr < next) || (next < curr && curr < prev))
+  {
+        // So we use only 2D interpolation in the current scale
+        dss = 1.0;
+        dxs = 0.0;
+        dys = 0.0;
+        ds = 0.0;
+  }
+
+  // Compute matrice determinant
+  double det = dxx * (dyy * dss - dys * dys) - dxy * (dxy * dss - dxs * dys) + dxs * (dxy * dys - dxs * dyy);
+
+  // Solve system, compute key point offset
+  solution[0] = -dx * (dyy * dss - dys * dys) - dy * (dxs * dys - dxy * dss) - ds * (dxy * dys - dyy * dxs);
+  solution[1] = -dx * (dys * dxs - dss * dxy) - dy * (dxx * dss - dxs * dxs) - ds * (dxs * dxy - dxx * dys);
+  solution[2] = -dx * (dxy * dys - dxs * dyy) - dy * (dxy * dxs - dxx * dys) - ds * (dxx * dyy - dxy * dxy);
+
+  // Compute interpolated value Hessian Determinant for lSolution (determinant factor)
+  PixelValue lDoHInterpolated = det * currentScale.GetCenterPixel() +
+                               0.5 * (dx * solution[0] +
+                                      dy * solution[1] +
+                                      ds * solution[2]);
+
+  PixelValue lHessianTrace2 = (dxx + dyy) * (dxx + dyy);
+  PixelValue lHessianDet = dxx * dyy - dxy * dxy;
+  
+  // DoG threshold : ignore detected extrema if is not sufficiently noticeable
+  accepted = fabs(lDoHInterpolated) > fabs(det * m_DoHThreshold);
+
+  if (!accepted)
+    {
+    //++m_DiscardedKeyPoints; /* not used at the moment */
+    }
+  if (det < 1e-10f)             // this test cancels the shift for every "weak" extrema
+    {
+    solution.Fill(0);
+    }
+  else
+    {
+    // normalize offset with determinant of derivative matrix
+    solution /= det;
+    }
+  /* check that the translation found is inside a cubic pixel */
+  if (fabs(solution[0]) > 1.0 || fabs(solution[1]) > 1.0 || fabs(solution[2]) > 1.0)
+  {
+        accepted = false;
+        //solution.Fill(0);
+  }
+        
+  return accepted;
+}
+
+/*-----------------------------------------------------------
+ * Compute the orientation of The KeyPoint
+ -----------------------------------------------------------*/
+
+template <class TInputImage, class TOutputPointSet>
+double
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::AssignOrientation(const NeighborhoodType& neigh, double S)
+{
+
+  int    i = 0;
+  int    pas = ((i + S) - (int) (i + S) > 0.5) ? ((int) S + 1) : (int) S;
+  int    Largeur = 2 * neigh.GetRadius()[0] + 1;         // Width & length of a neighborhood
+  int    rayon = neigh.GetRadius()[0];                   // radius of the neigh
+  int    col, raw;
+  double dist;
+  double w;                                              // weight of the circular gaussian
+
+  OutputPointType pt;
+
+  // Gradient orientation histogram
+  double angle;
+  int    bin        = 0;
+  int    Pi         = 180;
+  int    LengthBin  = 60;
+  int    NbBins     = (2 * Pi / LengthBin);
+  std::vector<double> tab(NbBins*2, 0.);
+
+  while (i < (int) neigh.Size())
+    {
+    col = i % Largeur - rayon;
+    raw = i / Largeur - rayon;
+    dist = vcl_sqrt(static_cast<double>(col * col  + raw * raw));
+    col += rayon;
+    raw += rayon;                           // Backup to the image coordinate axes
+
+    if (dist < 6 * S)
+      {
+      // Haar Wavelets responses accumulated in an histogram with Pi/3 precison
+      if ((col > pas && col < Largeur - pas) && (raw > pas && raw < Largeur - pas))
+        {
+
+        w  = vcl_exp(-((col - rayon) * (col - rayon) + (raw - rayon) * (raw - rayon)) / (2 * 2.5 * 2.5 * S * S));
+        pt[0] = (neigh[(col + pas) + raw * Largeur] - neigh[(col - pas) + raw * Largeur]) * w;
+        pt[1] = (neigh[col + (raw + pas) * Largeur] - neigh[col + (raw - pas) * Largeur]) * w;
+
+        if (pt[0] + pt[1] != 0)
+          {
+          angle = atan(pt[0] / pt[1]) * (Pi / otb::CONST_PI);
+          if (angle < 0) angle += 2 * Pi;
+
+          bin = (int) (angle / LengthBin);
+
+          if (bin <= NbBins - 1  || bin >= 0)
+            {
+            tab[2 * bin]   += pt[0];
+            tab[2 * bin + 1] += pt[1];
+            }
+          }
+        }
+      }
+    i += pas;
+    }
+
+ //Find Orientation
+  double indice = 0;
+  double max    = 0;
+  double length = 0;
+
+  // Detecting current point orientation
+  for (int i = 0; i < NbBins * 2; i = i + 2)
+    {
+    length = vcl_sqrt(tab[i] * tab[i] + tab[i + 1] * tab[i + 1]);
+    if (length > max)
+      {
+      max = length;
+      indice = i / 2;
+      }
+    }
+
+  return (indice + 0.5) * LengthBin;
+}
+
+/*-----------------------------------------------------------
+ * Compute the descriptor of The KeyPoint
+ -----------------------------------------------------------*/
+
+template <class TInputImage, class TOutputPointSet>
+typename ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::VectorType
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::ComputeDescriptor(const NeighborhoodType& neigh, double O, double S)
+{
+
+  typedef itk::CenteredRigid2DTransform<double> TransformType;
+  TransformType::Pointer eulerTransform = TransformType::New();
+  TransformType::ParametersType  ParamVec(5);
+  PointImageType pSrc, pDst;
+  double         angle = O * otb::CONST_PI / 180;
+
+  int    i = 0,  col, raw, Nbin, pas = 1;
+  double xx = 0, yy = 0;
+  double dx, dy, w;
+  int    Largeur = 2 * neigh.GetRadius()[0] + 1;
+  double rayon =  static_cast<double>(Largeur) / 4.;
+  double r = neigh.GetRadius()[0];
+  double dist = 0;
+  double x0 = neigh.GetCenterNeighborhoodIndex() % Largeur;
+  double y0 = neigh.GetCenterNeighborhoodIndex() / Largeur;
+
+  //std::cout << " x0 " << x0 << " y0 "  << y0 << angle << std::endl;
+
+  VectorType descriptorVector;
+  descriptorVector.resize(64);
+
+  /** Parameters of the transformation*/
+  ParamVec[0] = angle;
+  ParamVec[1] = x0;
+  ParamVec[2] = y0;
+  ParamVec[3] = 0;
+  ParamVec[4] = 0;
+  eulerTransform->SetParameters(ParamVec);
+
+  while (i < (int) neigh.Size())
+    {
+    col = i % Largeur;
+    raw = i / Largeur;
+
+    if ((col > pas && col < Largeur - pas) && (raw > pas && raw < Largeur - pas))
+      {
+      double distanceX = (raw - r);
+      double distanceY = (col - r);
+      dist = vcl_sqrt(distanceX * distanceX + distanceY * distanceY);
+
+      if (dist <= r)
+        {
+        /* Transform point to compensate the rotation the orientation */
+        pDst[0] = col;
+        pDst[1] = raw;
+        pSrc = eulerTransform->TransformPoint(pDst);
+
+        /** New Coordinates (rotated) */
+        col = static_cast<int>(vcl_floor(pSrc[0]));
+        raw = static_cast<int>(vcl_floor(pSrc[1]));
+
+        if (raw == 0) raw = +1;
+        if (col == 0) col += 1;
+
+        xx = static_cast<int> (pSrc[1] / rayon);
+        yy = static_cast<int> (pSrc[0] / rayon);
+        Nbin =  static_cast<int> (xx + 4 * yy);
+
+        if (Nbin < 16)           //because 64 descriptor length
+          {
+          double distanceXcompensee_2 = (pSrc[0] - r) * (pSrc[0] - r);
+          double distanceYcompensee_2 = (pSrc[1] - r) * (pSrc[1] - r);
+
+          w = vcl_exp(-(distanceXcompensee_2 + distanceYcompensee_2) / (2 * 3.3 * 3.3 * S * S));
+
+          dx = 0.5 * (neigh[(col + pas) + raw * Largeur] - neigh[(col - pas) + raw * Largeur]) * w;
+          dy = 0.5 * (neigh[col + (raw + pas) * Largeur] - neigh[col + (raw - pas) * Largeur])  * w;
+
+          descriptorVector[4 * Nbin] += dx;
+          descriptorVector[4 * Nbin + 1] += dy;
+          descriptorVector[4 * Nbin + 2] += vcl_abs(dx);
+          descriptorVector[4 * Nbin + 3] += vcl_abs(dy);
+          }
+        }
+      }
+    i++;
+    }
+
+  double accu = 0;
+  for (int i = 0; i < 64; i++)
+    accu += descriptorVector[i] * descriptorVector[i];
+
+  for (int j = 0; j < 64; j++)
+    descriptorVector[j] /= vcl_sqrt(accu);
+
+  return descriptorVector;
+
+}
+
+/*----------------------------------------------------------------
+  PrintSelf
+  -----------------------------------------------------------------*/
+template <class TInputImage, class TOutputPointSet>
+void
+ImageToSURFKeyPointSetFilter<TInputImage, TOutputPointSet>
+::PrintSelf(std::ostream& os, itk::Indent indent) const
+{
+  Superclass::PrintSelf(os, indent);
+  os << indent << "Number of Key Points  " << m_NumberOfPoints  << std::endl;
+}
+}
+#endif
diff --git a/Code/UtilitiesAdapters/OssimAdapters/otbMapProjectionAdapter.cxx b/Code/UtilitiesAdapters/OssimAdapters/otbMapProjectionAdapter.cxx
index 84443c7c15795e8b7aa2e895b963997c4a8d9b67..2961dbeb070d5a8ac87408b1a150631fb362dc61 100644
--- a/Code/UtilitiesAdapters/OssimAdapters/otbMapProjectionAdapter.cxx
+++ b/Code/UtilitiesAdapters/OssimAdapters/otbMapProjectionAdapter.cxx
@@ -44,7 +44,6 @@
 #include <ossim/base/ossimKeywordNames.h>
 
 
-
 namespace otb
 {