From f0aca516380dbaf5d2733a85ef43d07dfc675439 Mon Sep 17 00:00:00 2001 From: Guillaume Pasero <guillaume.pasero@c-s.fr> Date: Wed, 30 Jul 2014 19:09:32 +0200 Subject: [PATCH] ENH: proper computation of output size --- Code/DisparityMap/otbMulti3DMapToDEMFilter.txx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Code/DisparityMap/otbMulti3DMapToDEMFilter.txx b/Code/DisparityMap/otbMulti3DMapToDEMFilter.txx index 8bf72dbe10..14b9699036 100644 --- a/Code/DisparityMap/otbMulti3DMapToDEMFilter.txx +++ b/Code/DisparityMap/otbMulti3DMapToDEMFilter.txx @@ -253,10 +253,8 @@ void Multi3DMapToDEMFilter<T3DImage, TMaskImage, TOutputDEMImage>::SetOutputPara typename TOutputDEMImage::RegionType outRegion; outRegion.SetIndex(0, 0); outRegion.SetIndex(1, 0); - outRegion.SetSize(0, static_cast<unsigned int> ((box_xmax - box_xmin) / vcl_abs(outSpacing[0]) + 1)); - //TODO JGT check the size - //outRegion.SetSize(1, static_cast<unsigned int> ((box_ymax - box_ymin) / vcl_abs(outSpacing[1])+1)); - outRegion.SetSize(1, static_cast<unsigned int> ((box_ymax - box_ymin) / vcl_abs(outSpacing[1]))); + outRegion.SetSize(0, static_cast<unsigned int>(vcl_floor((box_xmax - box_xmin) / vcl_abs(outSpacing[0]) + 0.5))); + outRegion.SetSize(1, static_cast<unsigned int>(vcl_floor((box_ymax - box_ymin) / vcl_abs(outSpacing[1]) + 0.5))); outputPtr->SetLargestPossibleRegion(outRegion); outputPtr->SetNumberOfComponentsPerPixel(1); -- GitLab