7x7 arithmetic mean filter

20 次查看(过去 30 天)
How can I apply 7x7 arithmetic mean filter to following image?
  3 个评论
Image Analyst
Image Analyst 2020-7-17
faysal, are your two comments above "Answers"? If so, put them below in the official Answers area, not up here in comments. That way you can get credit (reputation points) for them. The comments section up here is where people are supposed to ask for clarification of a question, not offer solutions.

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2020-6-7
You can do this:
windowWidth = 7;
kernel = ones(windowWidth) / windowWidth^2;
outputImage = imfilter(grayImage, kernel);
If you use conv2() you'll need to make sure your input image is not of integer class, so cast it to double first:
outputImage = conv2(double(grayImage), kernel, 'same');
imfilter() does not require casting to double in advance. Also imfilter() does not flip the kernel like convolution does, though for a symmetric filter like this box filter, it doesn't matter if it's flipped or not.
  4 个评论
Image Analyst
Image Analyst 2020-6-9
You're welcome. Then since conv2() is a built-in function, it seems mine is the Answer that you should "Accept". Thanks in advance.

请先登录,再进行评论。

更多回答(1 个)

Thiago Henrique Gomes Lobato
You can colvolve the image with a filter that will perform the average. In your case it will be something like this:
I = randn(50,50); % Substitute this by your image
N = 7;
F = ones(N)/(N.^2); % Each element is scaled so the sum of all will be 1
IFiltered = conv2(I,F,'same');

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by