diff --git a/Applications/Segmentation/otbMeanShiftSmoothing.cxx b/Applications/Segmentation/otbMeanShiftSmoothing.cxx index 4f34bfc5cd61f5188099bece025254c7db247180..f334834b81653cd40c5941714a5278bbe3770193 100644 --- a/Applications/Segmentation/otbMeanShiftSmoothing.cxx +++ b/Applications/Segmentation/otbMeanShiftSmoothing.cxx @@ -132,6 +132,18 @@ private: m_Filter->SetMaxIterationNumber(GetParameterInt("maxiter")); m_Filter->SetRangeBandwidthRamp(GetParameterFloat("rangeramp")); + //Compute the margin used to ensure exact results (tile wise smoothing) + //This margin is valid for the default uniform kernel used by the + //MeanShiftSmoothing filter (bandwidth equal to radius in this case) + const unsigned int margin = (m_Filter->GetMaxIterationNumber()+1) * m_Filter->GetSpatialBandwidth(); + + otbAppLogINFO(<<"Margin of " << margin << " pixels applied to each tile to stabilized mean shift filtering." << std::endl); + + if ( margin > std::min(input->GetLargestPossibleRegion().GetSize()[0],input->GetLargestPossibleRegion().GetSize()[1]) ) + { + otbAppLogWARNING(<<"Margin value exceed the input image size." << std::endl); + } + SetParameterOutputImage("fout", m_Filter->GetOutput()); SetParameterOutputImage("foutpos", m_Filter->GetSpatialOutput()); if(!IsParameterEnabled("modesearch"))