diff --git a/Code/ChangeDetection/otbCorrelationChangeDetector.h b/Code/ChangeDetection/otbCorrelationChangeDetector.h
index 6effbe53743ad365e539a73b7370b22f0de86b00..d3f2671c5ecd6ddf882d6230b36f950072696cbd 100755
--- a/Code/ChangeDetection/otbCorrelationChangeDetector.h
+++ b/Code/ChangeDetection/otbCorrelationChangeDetector.h
@@ -79,8 +79,8 @@ public:
     for(unsigned long pos = 0; pos< itA.Size(); ++pos)
       {
 
-		  varA += static_cast<TOutput>( pow( static_cast<float>(itA.GetPixel(pos))-static_cast<float>(meanA),static_cast<float>(2.0)));
-		  varB += static_cast<TOutput>( pow( static_cast<float>(itB.GetPixel(pos))-static_cast<float>(meanB),static_cast<float>(2.0)));
+		  varA += static_cast<TOutput>( vcl_pow( static_cast<double>(itA.GetPixel(pos))-static_cast<double>(meanA),static_cast<double>(2.0)));
+		  varB += static_cast<TOutput>( vcl_pow( static_cast<double>(itB.GetPixel(pos))-static_cast<double>(meanB),static_cast<double>(2.0)));
 
       }
 
@@ -92,7 +92,7 @@ public:
     for(unsigned long pos = 0; pos< itA.Size(); ++pos)
       {
       
-      crossCorrel += (static_cast<TOutput>(itA.GetPixel(pos))-meanA)*(static_cast<TOutput>(itB.GetPixel(pos))-meanB)/(itA.Size()*sqrt(varA*varB));
+      crossCorrel += (static_cast<TOutput>(itA.GetPixel(pos))-meanA)*(static_cast<TOutput>(itB.GetPixel(pos))-meanB)/(itA.Size()*vcl_sqrt(varA*varB));
 
       }
 
diff --git a/Code/Common/otbDrawPathFilter.txx b/Code/Common/otbDrawPathFilter.txx
index e0345a0892aece47304881d2497f827c345be580..6db400778e94c0b36c3c91faf196791e1bd2abce 100644
--- a/Code/Common/otbDrawPathFilter.txx
+++ b/Code/Common/otbDrawPathFilter.txx
@@ -25,9 +25,6 @@
 #include "itkImageIteratorWithIndex.h"
 #include "itkImageRegionIteratorWithIndex.h"
 #include "itkImageRegionConstIteratorWithIndex.h"
-
-
-
 
 namespace otb
 {
@@ -51,7 +48,7 @@ DrawPathFilter<TInputImage,TInputPath,TOutputImage>
   typedef typename InputPathType::ContinuousIndexType               VertexType;
   typedef itk::VectorContainer< unsigned,VertexType >               VertexListType;
   typedef typename VertexListType::ConstPointer                     VertexListTypePointer;
-  typedef float                                                     RealType;
+  typedef double                                                     RealType;
   
   typedef itk::ImageRegionIteratorWithIndex< OutputImageType > OutputIteratorType; 
   typedef itk::ImageRegionConstIteratorWithIndex< InputImageType >  InputIteratorType; 
diff --git a/Code/Common/otbDrawPathListFilter.txx b/Code/Common/otbDrawPathListFilter.txx
index 722f2d49dd4e356d74870e82316bcb4f719f900c..224fe7834822523b5577e82b59899cfa101afe62 100644
--- a/Code/Common/otbDrawPathListFilter.txx
+++ b/Code/Common/otbDrawPathListFilter.txx
@@ -152,7 +152,7 @@ DrawPathListFilter<TInputImage,TInputPath,TOutputImage>
   
   InputImageSizeType          Taille;
   OutputImageIndexType        IndexOut;
-  typedef float                                        RealType; 
+  typedef double                                        RealType; 
   typedef typename InputPathType::ContinuousIndexType  VertexType;
 //  typedef itk::ContinuousIndex<RealType,2>             VertexType; 
   typedef itk::VectorContainer< unsigned,VertexType >  VertexListType;
diff --git a/Code/IO/otbONERAImageIO.cxx b/Code/IO/otbONERAImageIO.cxx
index ac4c55ea031d604be6b5635c8366ebf927540140..8814d9cc47a2525522fce93ef548bb095c83627e 100644
--- a/Code/IO/otbONERAImageIO.cxx
+++ b/Code/IO/otbONERAImageIO.cxx
@@ -481,7 +481,8 @@ void ONERAImageIO::Write(const void* buffer)
 
   unsigned long step = this->GetNumberOfComponents();
 
-  const unsigned long numberOfComponents = this->GetImageSizeInComponents();
+  // variable not used.
+  // const unsigned long numberOfComponents = this->GetImageSizeInComponents();
 
   unsigned int lNbLignes   = this->GetIORegion().GetSize()[1];
   unsigned int lNbColonnes = this->GetIORegion().GetSize()[0];
diff --git a/Testing/Code/BasicFilters/otbLogPolarTransformResample.cxx b/Testing/Code/BasicFilters/otbLogPolarTransformResample.cxx
index 62bd26b9b77f247294d599eb1909f8abbc769325..6547c18d7a41a4c0e9efddcf4685030169b419a3 100644
--- a/Testing/Code/BasicFilters/otbLogPolarTransformResample.cxx
+++ b/Testing/Code/BasicFilters/otbLogPolarTransformResample.cxx
@@ -33,7 +33,7 @@ try
 
     const unsigned int Dimension = 2;
     typedef double PrecisionType;
-    typedef unsigned char PixelType;
+    typedef double PixelType;
     typedef otb::Image<PixelType,Dimension> ImageType;
     typedef otb::LogPolarTransform<PrecisionType> LogPolarTransformType;
     typedef itk::LinearInterpolateImageFunction<ImageType,PrecisionType> InterpolatorType;
@@ -57,8 +57,8 @@ try
     params[0]=0.5*static_cast<double>(reader->GetOutput()->GetLargestPossibleRegion().GetSize()[0]);
     params[1]=0.5*static_cast<double>(reader->GetOutput()->GetLargestPossibleRegion().GetSize()[1]);
     params[2]=360./1024;
-    params[3]=log(sqrt(pow(static_cast<double>(reader->GetOutput()->GetLargestPossibleRegion().GetSize()[0]),2)
-+pow(static_cast<double>(reader->GetOutput()->GetLargestPossibleRegion().GetSize()[1]),2))/2)/512;
+    params[3]=vcl_log(vcl_sqrt(vcl_pow(static_cast<double>(reader->GetOutput()->GetLargestPossibleRegion().GetSize()[0]),2)
++vcl_pow(static_cast<double>(reader->GetOutput()->GetLargestPossibleRegion().GetSize()[1]),2))/2)/512;
     transform->SetParameters(params);
 
     ImageType::SizeType size;
diff --git a/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx b/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx
index 0367b8452659ce95cb3c4ff66ea9d7f86d1850b0..347ded5eb34f4d87d0ebe1cfa03ba6a33b63a235 100644
--- a/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx
+++ b/Testing/Code/Common/otbTestCommandLineArgumentParserList.cxx
@@ -49,7 +49,7 @@ int otbTestCommandLineArgumentParserList( int argc, char * argv[] )
 	  {
 		//unsigned int lEntierDeux = otb::GetParameter<unsigned int>(parseResult,"-deuxentiers",1);
 		unsigned int lEntierDeux = parseResult->GetParameterUInt("-deuxentiers",1);
-          std::cout << "Entier : "<<lEntier<<std::endl;
+          std::cout << "Entier : "<<lEntierDeux<<std::endl;
 	  }
 	//double lDouble = otb::GetParameter<double>(parseResult,"-double");
 	double lDouble = parseResult->GetParameterDouble("-double");
diff --git a/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx b/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx
index 0f48983dfe21cf62bdeceb8d32d388d762cc3292..2c014e20132a916c980346640567019bfc6d894d 100644
--- a/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx
+++ b/Testing/Code/Common/otbTestCommandLineArgumentParserWithError.cxx
@@ -48,7 +48,7 @@ int otbTestCommandLineArgumentParserWithError( int argc, char * argv[] )
 	  {
 		//unsigned int lEntierDeux = otb::GetParameter<unsigned int>(parseResult,"-deuxentiers",1);
 		unsigned int lEntierDeux = parseResult->GetParameterUInt("-deuxentiers",1);
-          std::cout << "Entier : "<<lEntier<<std::endl;
+          std::cout << "Entier : "<<lEntierDeux<<std::endl;
 	  }
 	//double lDouble = otb::GetParameter<double>(parseResult,"-double");
 	double lDouble = parseResult->GetParameterDouble("-double");