diff --git a/Code/FeatureExtraction/otbLineDetectorImageFilterBase.txx b/Code/FeatureExtraction/otbLineDetectorImageFilterBase.txx
index bab6c390944764180bd0da396efa4f742725c766..cc325407241a62658ceb65b2577c78ea8f563b81 100755
--- a/Code/FeatureExtraction/otbLineDetectorImageFilterBase.txx
+++ b/Code/FeatureExtraction/otbLineDetectorImageFilterBase.txx
@@ -79,7 +79,7 @@ void LineDetectorImageFilterBase<TInputImage, TOutputImage, InterpolatorType>::G
   otbMsgDevMacro( << m_Radius[0] << " " << m_Radius[1] );
   
   // Define the size of the facelist by taking into account the rotation of the region
-  m_FaceList[0] = static_cast<unsigned int>( sqrt( (m_Radius[0]*m_Radius[0]) + (m_Radius[1]*m_Radius[1]) ) + 1 );
+  m_FaceList[0] = static_cast<unsigned int>( sqrt( static_cast<double>((m_Radius[0]*m_Radius[0]) + (m_Radius[1]*m_Radius[1]) ) + 1) );
   m_FaceList[1] = m_FaceList[0];
   
   // pad the input requested region by the operator radius