diff --git a/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.h b/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.h
index 3d35210fe122087cc455430ded45af4567448995..13f87b0725139f9df4d8f927af1f4b74ac41e9bb 100644
--- a/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.h
+++ b/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.h
@@ -63,7 +63,7 @@ public:
   typedef typename PolygonType::ConstPointer PolygonConstPointerType;
   typedef typename PolygonType::VertexListType    VertexListType;
   typedef typename PolygonType::ContinuousIndexType ContinuousIndexType;
-  typedef typename PolygonType::RegionType          RegionType;
+  typedef typename PolygonType::RegionType::ImageRegionType RegionType;
   typedef typename VertexListType::ConstIterator VertexListConstIteratorType;
   typedef std::vector<bool> BoolVectorType;
 
diff --git a/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.txx b/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.txx
index 42c253348ab074c86ad7e7b5e0d889f92ec94258..86bd0497f7a6c15e80a484b22d0fa783a83323c9 100644
--- a/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.txx
+++ b/Code/SpatialReasoning/otbPolygonToPolygonRCC8Calculator.txx
@@ -53,8 +53,8 @@ PolygonToPolygonRCC8Calculator<TInputPolygon>
 ::Compute(void)
 {
   // First check if bounding regions are disjoints
-  RegionType region1 = m_Polygon1->GetBoundingRegion();
-  RegionType region2 = m_Polygon2->GetBoundingRegion();
+  RegionType region1 = m_Polygon1->GetBoundingRegion().GetImageRegion();
+  RegionType region2 = m_Polygon2->GetBoundingRegion().GetImageRegion();
 
   // If intersection is not null, we have to do the computation
   if (!RegionsIntersectionIsNull(region1,region2))