matlab code for median-mean filter
Show older comments
a hybrid noise filter technique called median-mean filter by combining median and mean filter found in one of the reseach article. is there any matlab command for median-mean filter if so pls suggest me.
Answers (3)
Matt J
on 5 Nov 2013
0 votes
Not unless you find it on the File Exchange (or another site). However, it sounds like commands like MEAN, MEDIAN, MEDFILT2 could be useful in building it yourself.
KONDA SRUJANA
on 16 Sep 2021
[I,map]=imread('photo.tif');
I=ind2grb(I,map);
J=imnoise(I,'salt&pepper',0.02);
K=hmf(J,9);
subplot(1,2,1);
imshow(J);
subplot(1,2,2);
imshow(K);
1 Comment
Image Analyst
on 16 Sep 2021
There is no built-in hmf() function, and you forgot to attach it.
Image Analyst
on 16 Sep 2021
0 votes
See attached modified median filter to remove salt and pepper noise.
Categories
Find more on Image Filtering in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!