From 0587d8b8a975c3078d9359b745c19931cd40d1ad Mon Sep 17 00:00:00 2001 From: Julien Michel <julien.michel@c-s.fr> Date: Thu, 2 Oct 2008 17:38:12 +0200 Subject: [PATCH] BUG: BSpline internal coefficient filter not refreshing correctly. --- .../otbBSplineInterpolateImageFunction.txx | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Code/BasicFilters/otbBSplineInterpolateImageFunction.txx b/Code/BasicFilters/otbBSplineInterpolateImageFunction.txx index a377371794..438bf2127b 100755 --- a/Code/BasicFilters/otbBSplineInterpolateImageFunction.txx +++ b/Code/BasicFilters/otbBSplineInterpolateImageFunction.txx @@ -64,17 +64,12 @@ void BSplineInterpolateImageFunction<TImageType,TCoordRep,TCoefficientType> ::UpdateCoefficientsFilter(void) { - if(!m_CoefficientFilter->GetInput()->GetBufferedRegion().IsInside(m_CurrentBufferedRegion)) - { - //std::cout<<"Updating coefs filter"<<std::endl; m_CoefficientFilter->GetOutput()->UpdateOutputInformation(); m_CoefficientFilter->GetOutput()->SetRequestedRegion(m_CoefficientFilter->GetInput()->GetBufferedRegion()); m_CoefficientFilter->GetOutput()->PropagateRequestedRegion(); m_CoefficientFilter->GetOutput()->UpdateOutputData(); m_Coefficients = m_CoefficientFilter->GetOutput(); - //std::cout<<"Updated region: "<<m_CoefficientFilter->GetInput()->GetBufferedRegion()<<std::endl; - } - m_CurrentBufferedRegion =m_CoefficientFilter->GetInput()->GetBufferedRegion(); + m_CurrentBufferedRegion =m_CoefficientFilter->GetInput()->GetBufferedRegion(); } template <class TImageType, class TCoordRep, class TCoefficientType> void @@ -83,15 +78,13 @@ BSplineInterpolateImageFunction<TImageType,TCoordRep,TCoefficientType> { if ( inputData ) { - m_CoefficientFilter->SetInput(inputData); + m_CoefficientFilter->SetInput(inputData); // the Coefficient Filter requires that the spline order and the input data be set. // TODO: We need to ensure that this is only run once and only after both input and // spline order have been set. Should we force an update after the // splineOrder has been set also? - - UpdateCoefficientsFilter(); // Call the Superclass implementation after, in case the filter -- GitLab