Skip to content
Snippets Groups Projects
Commit eee825a7 authored by Emmanuel Christophe's avatar Emmanuel Christophe
Browse files

ENH: change the default boundary condition for the convolution (better for the pan sharpening)

parent a35190e8
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ ConvolutionImageFilter< TInputImage, TOutputImage, TBoundaryCondition>
InputImageRegionType inputRegionForThread;
this->CallCopyOutputRegionToInputRegion(inputRegionForThread, outputRegionForThread);
itk::ConstNeighborhoodIterator<InputImageType, itk::ConstantBoundaryCondition<InputImageType> > inputIt(m_Radius, input, inputRegionForThread);
itk::ConstNeighborhoodIterator<InputImageType> inputIt(m_Radius, input, inputRegionForThread);
itk::ImageRegionIterator<OutputImageType> outputIt(output, outputRegionForThread);
inputIt.GoToBegin();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment