diff --git a/Code/Common/otbPolyLineParametricPathWithValue.h b/Code/Common/otbPolyLineParametricPathWithValue.h
index f52664610737deb63bb8f77a2da1a1a562f87423..ad7b0d89ce7fa12504f5d5e80393903b7d143c78 100644
--- a/Code/Common/otbPolyLineParametricPathWithValue.h
+++ b/Code/Common/otbPolyLineParametricPathWithValue.h
@@ -21,6 +21,7 @@ PURPOSE.  See the above copyright notices for more information.
 #include "itkPolyLineParametricPath.h"
 #include "itkMetaDataObject.h"
 #include "itkImageRegion.h"
+#include "otbRemoteSensingRegion.h"
 #include "otbMacro.h"
 
 namespace otb
@@ -58,7 +59,8 @@ template < class TValue,unsigned int VDimension=2>
   typedef typename Superclass::ContinuousIndexType ContinuousIndexType;
   typedef typename VertexListType::ConstIterator   VertexListConstIteratorType;
 
-  typedef itk::ImageRegion<2>                       RegionType;
+//   typedef itk::ImageRegion<2>                       RegionType;
+  typedef otb::RemoteSensingRegion<double>         RegionType;
   typedef typename RegionType::SizeType            SizeType;
   typedef typename RegionType::IndexType           IndexType;
 
diff --git a/Code/Common/otbPolyLineParametricPathWithValue.txx b/Code/Common/otbPolyLineParametricPathWithValue.txx
index 44da9307a04e26aec925e610308148ee36b2c2e0..afe17249b862c5f39fd1017591593de7298850c0 100644
--- a/Code/Common/otbPolyLineParametricPathWithValue.txx
+++ b/Code/Common/otbPolyLineParametricPathWithValue.txx
@@ -144,20 +144,21 @@ PolyLineParametricPathWithValue<TValue,VDimension>
 
   VertexListConstIteratorType it =  this->GetVertexList()->Begin();
 
-  long int x,y;
+  double x = 0.0;
+  double y = 0.0;
 
   if (this->GetVertexList()->Size()>0)
   {
-    x = static_cast<long int>(it.Value()[0]);
-    y = static_cast<long int>(it.Value()[1]);
+    x = static_cast<double>(it.Value()[0]);
+    y = static_cast<double>(it.Value()[1]);
     index[0] = x;
     index[1] = y;
 
     ++it;
     while (it != this->GetVertexList()->End())
     {
-      x = static_cast<long int>(it.Value()[0]);
-      y = static_cast<long int>(it.Value()[1]);
+      x = static_cast<double>(it.Value()[0]);
+      y = static_cast<double>(it.Value()[1]);
 
       // Index search
       if ( x < index[0] )
@@ -185,7 +186,7 @@ PolyLineParametricPathWithValue<TValue,VDimension>
     size[1] = maxId[1] - index[1];
   }
   m_BoundingRegion.SetSize(size);
-  m_BoundingRegion.SetIndex(index);
+  m_BoundingRegion.SetOrigin(index);
   m_BoundingRegionIsValid = true;
 }