How to implement a function to apply the 3x3 average filter to a gray-scale image.

31 次查看(过去 30 天)
Here is my code
function AverageFilter(image)
I = imread(image);
[x,y] = size(I);
for i = 2:x-1
for j = 2:y-1
sum = 0;
for ii = i-1:i+1
for jj = j-1:j+1
sum = sum + I(ii,jj);
end
end
I2(i,j) = ceil(sum/9);
end
end
imshow(I2);
it keeps giving me the following error: Warning: Image is too big to fit on screen; displaying at 67% > In imuitools\private\initSize at 73 In imshow at 264 In AverageFilter at 18
and the resulting image is very dark..
I want to know what did i do wrong in my code and to fix this error?!!!
  7 个评论

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2012-11-14
编辑:Image Analyst 2012-11-14
Don't worry about the warning. Your code can be done like this:
blurredImage = conv2(single(yourGrayScaleImage), ones(3)/9, 'same');
imshow(blurredImage, []); % or imshow(uint8(blurredImage), [0 255]);
  12 个评论
Image Analyst
Image Analyst 2020-6-7
You'd have to reshape the image into a column of 3 pixels. Then use repelem() to repeat each column because the windows overlap don't they? You don't want them to jump, right. Then use a for loop to go down the columns. You'd have to think about it. It gets tricky because you'll have to have each pixel in there 9 times so it's tricky to figure out how to do that with repelem() and reshape(). It's much more difficult when they don't let you do it the simple and obvious ways. It's MUCH easier if they let you move the window in jumps of 3 pixels over and down rather than 1 pixel over and down.

请先登录,再进行评论。

更多回答(2 个)

sateesh kumar
sateesh kumar 2020-4-16
Dont worry about Warning/Display Warning of too big size, you can simply write warning off at the starting of program.

Nitishselvakumar Nadar
img = imread("Tulip.jpg");
[row ,col] = size(img);
for i = 2:1:row-1
for j = 2:1:col-1
x= img(i+1:i-1,j+1:j-1);
C=x(:)';
C=sort(C);
avg = sum(C)/9;
img(i,j) = avg;
end
end
imshow(img);
  4 个评论
DGM
DGM 2022-11-27
编辑:DGM 2022-11-27
If you're going to offer an improved bit of code, explain why it's better.
This is still a lot of room for improvement.
% read an image
inpict = imread('cameraman.tif'); % use unambiguous variable names
% what stops this from breaking if the image is RGB?
[row,col,~] = size(inpict); % always discard the last output from size()
outpict = zeros(row,col,class(inpict)); % preallocate to appropriate class
for i = 2:1:row-1 % avoiding the edges is a simple strategy, but not very good
for j = 2:1:col-1 % a better way would be edge padding/replication
% get a sample
sampleblock = inpict(i-1:i+1,j-1:j+1);
% don't need a bunch of temporary variables or unused lines
% RHS is uint8-scale double
% LHS is uint8
% the assignment implicitly uses round() when casting
outpict(i,j) = mean(sampleblock(:));
end
end
% don't need a bunch of redundant images
montage({inpict outpict})
Communication is the purpose of a forum, and comments (code comments and external commentary) are part of that process.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by