please can someone help me with "Adaptive Weighted Median Filter" to remove speckle noise….
Best Answer
Lots of things could be called that - there are maybe a dozen, or more, variants. Here's an example of how I use an adaptive median filter to remove salt and pepper noise. Feel free to adapt it to your particular algorithm.
clc; % Clear command window.
clear; % Delete all variables.
close all; % Close all figure windows except those created by imtool.
imtool close all; % Close all figure windows created by imtool.
workspace; % Make sure the workspace panel is showing.
Best Answer