sliding window
1 次查看(过去 30 天)
显示 更早的评论
How to apply a 3x3 sliding window for an image while the pixel in the center of the window should have the mean value of the window.
0 个评论
回答(3 个)
Ben Mitch
2011-5-22
I think you're after filter2(). Try
mn = filter2(ones(3), im);
5 个评论
Image Analyst
2011-6-12
But that's exactly what Ben, Jan, and Sean de's code does! Did you look up the help for filter2()? It is basically conv2() (which is highly optimized) with the 'same' option. (I always use conv2 rather than filter2.) Write a test with a small image to convince yourself.
Jan
2011-6-11
What is "the next 3x3 position"? Will the resulting picture have a width and size reduced by 3? If so, this can achieve the calculation efficiently: FEX: BlockMean
2 个评论
Image Analyst
2011-6-12
Patan, how many times do we have to say it. CONV2 AND IMFILTER WILL DO WHAT YOU'RE ASKING!!!!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!