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!