Effacer les filtres
Effacer les filtres

local mean in empirical mode decomposition

4 vues (au cours des 30 derniers jours)
Suzanne Hussein
Suzanne Hussein le 1 Mar 2016
What is the local mean in empirical mode decomposition ? What is the different between local mean and mean? Can any one give me code of local mean? Thanks

Réponses (1)

Image Analyst
Image Analyst le 5 Mar 2016
The local mean can be computed by conv2():
windowWidth = 9; % Some odd number
kernel = ones(windowWidth) / windowWidth^2;
localMeanImage = conv2(double(inputImage), kernel, 'same');

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by