필터 지우기
필터 지우기

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
justin gat
justin gat 2021년 5월 30일
ok sir now i will tag u and will write a question
thank you i need it as soon as possible

댓글을 달려면 로그인하십시오.

채택된 답변

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
Franzi
Franzi 2020년 6월 7일
Hello? Are you still there? Do you know the function reshape and how to use it?
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
Nitishselvakumar Nadar 2021년 4월 22일
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
mohammad sheikholmolok
mohammad sheikholmolok 2022년 11월 27일
이동: DGM 2022년 11월 27일
I write for you the correct code
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