matlab code for median-mean filter
5 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
回答(3 个)
Matt J
2013-11-5
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.
0 个评论
KONDA SRUJANA
2021-9-16
[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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Digital Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!