How can we slide say a 3X3 window on a matrix and perform an operation (i.e. Sum) on the 3X3 window, and then move that 3X3 window to the next part until we reach the end of the matrix? Thanks.
2 次查看(过去 30 天)
显示 更早的评论
How can we slide say a 3X3 window on a matrix and perform an operation (i.e. Sum) on the 3X3 window, and then move that 3X3 window to the next part until we reach the end of the matrix? Thanks. i have a program of 2X2 but i went 3, thanks.
0 个评论
采纳的回答
Image Analyst
2015-4-15
You can use conv2():
blurredImage = conv2(double(grayImage), ones(3), 'same');
imshow(blurredImage, []);
You could also use imfilter(). Use ones(3)/9 if you want the average instead of the sum.
2 个评论
Image Analyst
2015-4-15
You're welcome. If it did the job for you and there are no other questions, can you mark the answer as "Accepted"?
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!