vector median filter
이전 댓글 표시
is there any function in matlab for vector median filter or vector directional filter? plz help.
댓글 수: 2
Walter Roberson
2011년 12월 28일
Is there a difference between "vector median filter" and "median filter applied to a vector" ?
Yogesh Joshi
2011년 12월 28일
채택된 답변
추가 답변 (2개)
Image Analyst
2011년 12월 28일
0 개 추천
Whether applying medfilt2() to each color plane independently (such as my code here: http://www.mathworks.com/matlabcentral/answers/16350-how-to-remove-pixels-in-an-image) is an improvement is something you'll have to decide as this can give color artifacts that can make it worse. Maybe you want to convert to HSV and just use medfilt2 on the V channel. Or you can do more sophisticated, smarter things like median filtering the image (somehow) and then replace only SOME of the pixels - the "bad" ones, which you've identified somehow - rather than all of them.
Yogesh Joshi
2012년 1월 2일
0 개 추천
댓글 수: 1
Image Analyst
2012년 1월 2일
OK, what's the algorithm for that?
카테고리
도움말 센터 및 File Exchange에서 Image Filtering에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!