How do I get a median filtered image?
1 次查看(过去 30 天)
显示 更早的评论
How do I get a median filtered image? I want to convert the first image like the second image using median filter.
0 个评论
回答(1 个)
David Young
2015-8-25
4 个评论
Guillaume
2015-8-26
编辑:Guillaume
2015-8-26
Have you tried increasing the size of the kernel. The default is 3x3. Your desired output image is extremely blurred indicative of a large kernel.
Try
medfilt2(img, [10 10]); %kernel size of 10
Note that even with the default, the output of medfilt2 is never exactly the same as the input (unless your image is just uniform)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!