On 2-D images and I have code for Adaptive Wiener filter ,i want to insert code of median and average filter in that code and compare to show no of corrupt pixels corrected in median and average and in adaptive wiener filer.
I need help on following
조회 수: 1(최근 30일)
표시 이전 댓글
I want Adaptive Wiener filter and compare it with median and average filter and show how adaptive wiener filter is better than other two.
댓글 수: 0
채택된 답변
추가 답변(1개)
Image Analyst
2018년 2월 18일
Are you dealing with 1-D signals or 2-D images? There are built in functions for all of those. Are you sure you really need us to write the code for you, even though there are examples in the documentation?
댓글 수: 1
Image Analyst
2018년 2월 18일
편집: Image Analyst
2018년 2월 18일
For median filter, use medfilt2(), like in the attached demo.
For averaging/blurring, use conv2() or imfilter().
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!