From d0685afe41503055f76c29a2ee414d2e366be291 Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@orfeo-toolbox.org> Date: Mon, 20 Feb 2012 15:35:06 +0100 Subject: [PATCH] BUG: Fixing bug on NCC option --- Applications/DisparityMap/otbPixelWiseBlockMatching.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Applications/DisparityMap/otbPixelWiseBlockMatching.cxx b/Applications/DisparityMap/otbPixelWiseBlockMatching.cxx index 8973b23127..7b975d5b26 100644 --- a/Applications/DisparityMap/otbPixelWiseBlockMatching.cxx +++ b/Applications/DisparityMap/otbPixelWiseBlockMatching.cxx @@ -285,10 +285,11 @@ private: m_NCCBlockMatcher->SetMaximumHorizontalDisparity(maxhdisp); m_NCCBlockMatcher->SetMinimumVerticalDisparity(minvdisp); m_NCCBlockMatcher->SetMaximumVerticalDisparity(maxvdisp); + m_NCCBlockMatcher->MinimizeOff(); if(masking) { - m_SSDBlockMatcher->SetMaskInput(m_BandMathFilter->GetOutput()); + m_NCCBlockMatcher->SetMaskInput(m_BandMathFilter->GetOutput()); } hdispImage = m_NCCBlockMatcher->GetHorizontalDisparityOutput(); -- GitLab