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 件のコメント
Image Analyst
2021 年 9 月 16 日
See attached modified median filter to remove salt and pepper noise.
0 件のコメント
参考
カテゴリ
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!