matlab code for median-mean filter
조회 수: 4 (최근 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!