diff --git a/Code/SARPolarimetry/otbMuellerToCircularPolarisationImageFilter.h b/Code/SARPolarimetry/otbMuellerToCircularPolarisationImageFilter.h
index f8dbb63242a03d609f723cae888742cb6ea9a0ea..5608881c42378b5091466dc6e0ff55c48cd0bfad 100644
--- a/Code/SARPolarimetry/otbMuellerToCircularPolarisationImageFilter.h
+++ b/Code/SARPolarimetry/otbMuellerToCircularPolarisationImageFilter.h
@@ -31,7 +31,7 @@ namespace Functor {
  *
  * The input Mueller image has 16 channels, one for each matrix element.
  * The order of the channels corresponds to :
- * \f$  \begin{pmatrix} 
+ * \f$  \begin{pmatrix}
  * {channel #0 }&{channel #1 }&{channel #2 }&{channel #3 } \\
  * {channel #4 }&{channel #5 }&{channel #6 }&{channel #7 } \\
  * {channel #8 }&{channel #9 }&{channel #10}&{channel #11} \\
diff --git a/Code/SARPolarimetry/otbMuellerToCovarianceImageFilter.h b/Code/SARPolarimetry/otbMuellerToCovarianceImageFilter.h
index fbaac7b7131936dff3264a3522751cfdd5eae54e..fb87074ac529385a97a36f2a04a2e13d3b6a9148 100644
--- a/Code/SARPolarimetry/otbMuellerToCovarianceImageFilter.h
+++ b/Code/SARPolarimetry/otbMuellerToCovarianceImageFilter.h
@@ -40,7 +40,7 @@ namespace Functor {
  * Where \f$ M_{ij} are the coefficients of the input Mueller matrix.
  * Input pixel must have 10 channels (one for each Mueller matrix coeffcients).
   * The order of the channels corresponds to :
- * \f$  \begin{pmatrix} 
+ * \f$  \begin{pmatrix}
  * {channel #0 }&{channel #1 }&{channel #2 }&{channel #3 } \\
  * {channel #4 }&{channel #5 }&{channel #6 }&{channel #7 } \\
  * {channel #8 }&{channel #9 }&{channel #10}&{channel #11} \\
diff --git a/Code/SARPolarimetry/otbMuellerToPolarisationDegreeAndPowerImageFilter.h b/Code/SARPolarimetry/otbMuellerToPolarisationDegreeAndPowerImageFilter.h
index e07d220676508ec7f4dca356d4919699280e37a5..51e28279045d0ffd64f87782b3e7dd58a98b231f 100644
--- a/Code/SARPolarimetry/otbMuellerToPolarisationDegreeAndPowerImageFilter.h
+++ b/Code/SARPolarimetry/otbMuellerToPolarisationDegreeAndPowerImageFilter.h
@@ -35,7 +35,7 @@ namespace Functor {
  *   from the Mueller image
  *
  * The order of the channels of the input image corresponds to :
- * \f$  \begin{pmatrix} 
+ * \f$  \begin{pmatrix}
  * {channel #0 }&{channel #1 }&{channel #2 }&{channel #3 } \\
  * {channel #4 }&{channel #5 }&{channel #6 }&{channel #7 } \\
  * {channel #8 }&{channel #9 }&{channel #10}&{channel #11} \\
diff --git a/Code/SARPolarimetry/otbMultiChannelsPolarimetricSynthesisFilter.h b/Code/SARPolarimetry/otbMultiChannelsPolarimetricSynthesisFilter.h
index fe9f8a0bc4011957f21b2ae96711e53b2015cb50..a93d40889e582c591f87b636ab45de27534e5038 100644
--- a/Code/SARPolarimetry/otbMultiChannelsPolarimetricSynthesisFilter.h
+++ b/Code/SARPolarimetry/otbMultiChannelsPolarimetricSynthesisFilter.h
@@ -31,7 +31,7 @@ namespace otb
  * \brief This class computes the polarimetric synthesis from two to four radar images, depening on the polarimetric architecture.
  *
  * It has the same behaviour as the PolarimetricSynthesisImageFilter expect the fact that it
- * considers a VectorImage as input which each channels is HH, HV, VH and VV (in this particular order). 
+ * considers a VectorImage as input which each channels is HH, HV, VH and VV (in this particular order).
  *
  * \ingroup SARPolarimetry
  * \sa PolarimetricSynthesisFilter
diff --git a/Code/SARPolarimetry/otbReciprocalHAlphaImageFilter.h b/Code/SARPolarimetry/otbReciprocalHAlphaImageFilter.h
index 97287c7890f89b1ac73c78613879e20bd01dd7bd..2712cacc4b248d814f012616f3acad6ce6c664e8 100644
--- a/Code/SARPolarimetry/otbReciprocalHAlphaImageFilter.h
+++ b/Code/SARPolarimetry/otbReciprocalHAlphaImageFilter.h
@@ -32,21 +32,21 @@ namespace Functor {
 /** \class otbHAlphaFunctor
  * \brief Evaluate the H-Alpha parameters from the reciprocal coherency matrix image.
  *
- * To process, we diagonalise the complex coherency matrix (size 3*3). We call \f$ SortedEigenValues \f$ the list that contains the 
+ * To process, we diagonalise the complex coherency matrix (size 3*3). We call \f$ SortedEigenValues \f$ the list that contains the
  * eigen values of the matrix sorted in decrease order. \f$ SortedEigenVector \f$ the corresponding list
  * of eigen vector.
- * 
+ *
  *   Output value are:
  *   channel #0 : \f$ entropy = -\sum_{i=0}^{2}{p[i].\log{p[i]}} / \log{3} \f$ \\
  *   channel #1 : \f$ \alpha = \sum_{i=0}^{2}{p[i].\alpha_{i} \f$ \\
  *   channel #2 : \f$ anisotropy = \frac {SortedEigenValues[1] - SortedEigenValues[2]}{SortedEigenValues[1] + SortedEigenValues[2]} \f$ \\
- * 
+ *
  * Where:
  * \f$ p[i] = \max{SortedEigenValues[i], 0} / \sum_{i=0}^{2, SortedEigenValues[i]>0}{SortedEigenValues[i]} \f$ \\
  * Then, \f$ if p[i] < 0, p[i]=0, if p[i] > 1, p[i]=1. \f$ \\
  * \f$ \alpha_{i} = \left| SortedEigenVector[i] \right|* \frac{180}{\pi}\f$ \\
  * Then, \f$ if \alpha_{i} > 90, \alpha_{i}=90. \f$ \\
- * 
+ *
  * \ingroup SARPolarimetry
  *
  */
diff --git a/Code/SARPolarimetry/otbSinclairToCovarianceMatrixFunctor.h b/Code/SARPolarimetry/otbSinclairToCovarianceMatrixFunctor.h
index c1c767c69346bcaae355f865754ef1c68358952e..b4ece464e43410785ed37729719a61e24e1a2287 100644
--- a/Code/SARPolarimetry/otbSinclairToCovarianceMatrixFunctor.h
+++ b/Code/SARPolarimetry/otbSinclairToCovarianceMatrixFunctor.h
@@ -39,7 +39,7 @@ namespace Functor
  *   channel #7 : \f$ S_{vh}.S_{vh}^{*} \f$ \\
  *   channel #8 : \f$ S_{vh}.S_{vv}^{*} \f$ \\
  *   channel #9 : \f$ S_{vv}.S_{vv}^{*} \f$ \\
- * 
+ *
  * The output pixel has 10 channels : the diagonal and the upper element of the matrix.
  * Element are stored from left to right, line by line.
  *
diff --git a/Code/SARPolarimetry/otbSinclairToMuellerMatrixFunctor.h b/Code/SARPolarimetry/otbSinclairToMuellerMatrixFunctor.h
index 599e6532e5a95393ab6256b2ec09c6d4ca19e035..4d92ae725fdf6c19fc5a0ffe25178bd008eebcd3 100644
--- a/Code/SARPolarimetry/otbSinclairToMuellerMatrixFunctor.h
+++ b/Code/SARPolarimetry/otbSinclairToMuellerMatrixFunctor.h
@@ -55,7 +55,7 @@ namespace Functor
  *
  * Output is a not a complex. The output pixel has 16 channels : each element of the Mueller matrix.
  * The order of the channels corresponds to :
- * \f$  \begin{pmatrix} 
+ * \f$  \begin{pmatrix}
  * {channel #0 }&{channel #1 }&{channel #2 }&{channel #3 } \\
  * {channel #4 }&{channel #5 }&{channel #6 }&{channel #7 } \\
  * {channel #8 }&{channel #9 }&{channel #10}&{channel #11} \\
diff --git a/Testing/Code/SARPolarimetry/otbSinclairImageFilter.cxx b/Testing/Code/SARPolarimetry/otbSinclairImageFilter.cxx
index 6508a756f79946e8a8be9330f6e9a8481ffdc707..e4c34c330aad1d36906a41b8bb7a51541f0c0624 100644
--- a/Testing/Code/SARPolarimetry/otbSinclairImageFilter.cxx
+++ b/Testing/Code/SARPolarimetry/otbSinclairImageFilter.cxx
@@ -77,11 +77,11 @@ int generic_SinclairImageFilter(int argc, char * argv[])
   typename ExtractROIType::Pointer  extract3 = ExtractROIType::New();
   extract1->SetStartX(10);
   extract1->SetStartY(10);
-  extract1->SetSizeX(30); 
+  extract1->SetSizeX(30);
   extract1->SetSizeY(30);
   extract2->SetStartX(10);
   extract2->SetStartY(10);
-  extract2->SetSizeX(30); 
+  extract2->SetSizeX(30);
   extract2->SetSizeY(30);
   extract3->SetStartX(10);
   extract3->SetStartY(10);
@@ -92,7 +92,7 @@ int generic_SinclairImageFilter(int argc, char * argv[])
   reader3->SetFileName(inputFilename3);
   extract1->SetInput(reader1->GetOutput());
   extract2->SetInput(reader3->GetOutput());
-  extract3->SetInput(reader3->GetOutput()); 
+  extract3->SetInput(reader3->GetOutput());
   filter->SetInputHH(extract1->GetOutput());
   filter->SetInputHV(extract2->GetOutput());
   filter->SetInputVH(extract2->GetOutput());
@@ -136,11 +136,11 @@ int generic_SinclairImageFilterWithCast(int argc, char * argv[])
   typename ExtractROIType::Pointer  extract3 = ExtractROIType::New();
   extract1->SetStartX(10);
   extract1->SetStartY(10);
-  extract1->SetSizeX(30); 
+  extract1->SetSizeX(30);
   extract1->SetSizeY(30);
   extract2->SetStartX(10);
   extract2->SetStartY(10);
-  extract2->SetSizeX(30); 
+  extract2->SetSizeX(30);
   extract2->SetSizeY(30);
   extract3->SetStartX(10);
   extract3->SetStartY(10);
@@ -151,7 +151,7 @@ int generic_SinclairImageFilterWithCast(int argc, char * argv[])
   reader3->SetFileName(inputFilename3);
   extract1->SetInput(reader1->GetOutput());
   extract2->SetInput(reader3->GetOutput());
-  extract3->SetInput(reader3->GetOutput()); 
+  extract3->SetInput(reader3->GetOutput());
   filter->SetInputHH(extract1->GetOutput());
   filter->SetInputHV(extract2->GetOutput());
   filter->SetInputVH(extract2->GetOutput());