From 57558ec75a27ffd05737ad33a80927d8c3161fb7 Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@c-s.fr> Date: Fri, 5 Dec 2008 15:55:29 +0100 Subject: [PATCH] COMP: Fixing ambiguous call to vcl_sqrt() --- Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx b/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx index 9066bb43ae..d3fda1604c 100644 --- a/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx +++ b/Code/FeatureExtraction/otbImageToSURFKeyPointSetFilter.txx @@ -138,8 +138,8 @@ namespace otb /** For each octave, we fill the imageList for the extremum search*/ m_ImageList->PushBack(m_determinantImage); - } - + } + /*----------------------------------------------------*/ /* extremum Search over octave's scales */ /*----------------------------------------------------*/ @@ -351,7 +351,7 @@ namespace otb { col = i%Largeur - rayon ; raw = i/Largeur - rayon ; - dist = vcl_sqrt(col *col + raw * raw ); + dist = vcl_sqrt(static_cast<double>(col *col + raw * raw) ); col +=rayon; raw +=rayon; // Backup to the image coordinate axes -- GitLab