Skip to content
Snippets Groups Projects
Commit 0d589dca authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Fixing streaming on mean-shift smoothing image filter (won't work on large images otherwise)

parent 6484615f
Branches
Tags
No related merge requests found
......@@ -250,6 +250,7 @@ void MeanShiftSmoothingImageFilter<TInputImage, TOutputImage, TKernel, TOutputIt
jointImageFunctor->SetInput(inputPtr);
jointImageFunctor->GetFunctor().Initialize(ImageDimension, m_NumberOfComponentsPerPixel, m_GlobalShift);
jointImageFunctor->GetOutput()->SetRequestedRegion(this->GetInput()->GetBufferedRegion());
jointImageFunctor->Update();
m_JointImage = jointImageFunctor->GetOutput();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment