HOW TO APPLY A MEAN FILTER FOR 3x3
이전 댓글 표시
I NEED TO APPLY THE 3x3 MEAN FILTER TO THE GRAY SCALE IMAGE. PLS SEND ME THE CODE FOR THAT
채택된 답변
추가 답변 (5개)
Image Analyst
2012년 9월 27일
filteredImage = conv2(single(grayscaleImage), ones(3)/9);
댓글 수: 7
Sehairi K.
2016년 8월 10일
filteredImage = conv2(grayscaleImage, ones(3)/9,'same');
Image Analyst
2016년 8월 10일
This will work if your grayscaleImage is already converted to double or single. Also, there are 3 edge options: 'same', 'full' (the default if none is supplied), and 'valid'. Usually for image processing the 'same' option is used.
Atalay Asa
2020년 6월 7일
How can we use it for 7x7 arithmetic mean filter?
Image Analyst
2020년 6월 7일
windowWidth = 7;
kernel = ones(windowWidth) / windowWidth^2;
outputImage = imfilter(grayImage, kernel);
SP
2021년 6월 7일
Hello, Sir. Can you explain to me that why the value in neighborhood need to be 1/9 (or 0.111)?
Ridho Liwardana
2022년 3월 23일
It's depend of matrix that you wanna use as filter, if it's a 3x3 matrix, the value is 1/(3x3) -> 1/9.
Image Analyst
2022년 3월 23일
@SP The reason you divide by windowWidth^2 (1/9 in this case) is because if you don't, the filtering is the sum of the filter window times the image to be filtered. So if the image were all 255 under the filter, you'd get an output value of 9*255 instead of 255. So the image would be 9 times as bright. To ensure that the filtered image lies in the same intensity range as the original image, you need to divide the filter values by windowWidth^2.
If you didn't have a uniform filter (like here where they are all 1's) you'd have to divide by the sum of the kernel:
% Divide unnormalized kernel by the sum of the values in it.
% This will ensure the output image has the same intensity range as the original.
kernel = kernel / sum(kernel(:));
outputImage = imfilter(grayImage, kernel);
Actually, that is the most general approach which will work for any filter.
Mohamed Batran
2015년 7월 11일
0 개 추천
thank you for your reply simple but helped a lot for customizing the filter i want
Celal Can Elgün
2015년 10월 24일
0 개 추천
How can we make it without using filter2(or any command) ?
Geetha raja
2018년 8월 19일
0 개 추천
I NEED TO APPLY THE bilateral FILTER TO THE GRAY SCALE IMAGE for denoising. PLS SEND ME THE CODE FOR THAT
댓글 수: 1
Image Analyst
2018년 8월 19일
Geetha, there is a part of the web site called "File Exchange". You can look there for community-contributed programs: Search for bilateral filter
Jahid Hasan
2022년 4월 19일
0 개 추천
Sorry to ask here, how to write mean and median filter without using a in-built function? What are the way to do it? Any help or code syntax. Thank you
댓글 수: 4
Image Analyst
2022년 4월 19일
You'd use a for loop in the obvious way where you just sum the elements and divide by the number of elements.
For median you'd need to write your own sorting routine (see Wikipedia or somewhere) and then take the middle element.
Jahid Hasan
2022년 4월 19일
Thanks for your reply. Do you have any examples of it as a reference to understand it.
Walter Roberson
2022년 4월 19일
Potential reference implementation. Not tested.
sum_of_elements = 0;
index_of_element = 0;
while true
index_of_element = index_of_element + 1;
try
sum_of_elements = sum_of_elements + YourVector(index_of_element);
catch ME
break; %we ran off the end of the array
end
end
number_of_elements = index_of_element - 1; %loop over-counts by 1
mean_of_YourVector = sum_of_elements ./ number_of_elements;
sorted_vector = bogosort(YourVector, number_of_elements);
index_of_element = 0;
while true
index_of_element = index_of_element + 1;
if index_of_element + index_of_element == number_of_elements
median_of_YourVector = YourVector(index_of_element);
break
elseif index_of_element + index_of_element + 1 == number_of_elements
median_of_YourVector = (YourVector(index_of_element) + YourVector(index_of_element+1)) / 2;
break
end
end
function sortedVector = bogosort(vectorToSort, number_of_elements)
%this is a legitimate sort
while true
neworder = randperm(number_of_elements);
sortedVector = vectorToSort(neworder);
index_of_element = 0;
while true
index_of_element = index_of_element + 1;
if index_of_element >= number_of_elements
%we got to the end of the list without detecting out-of-order
return;
end
if YourVector(index_of_element) > YourVector(index_of_element+1)
%detected something out of order, try again with a new order
break
end
end
end
end
DGM
2022년 4월 19일
As far as sliding filter/convolution examples go, here are some links. I'm sure there are others. These are just the ones I have in my notes.
general sliding/moving window filter base
same thing only with a gaussian mean setup
basic mean filter example
basic 2D convolution build (full size)
basic 2D convolution build (same size)
카테고리
도움말 센터 및 File Exchange에서 Image Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

