local mean in empirical mode decomposition
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
Image Analyst
2016 年 3 月 5 日
The local mean can be computed by conv2():
windowWidth = 9; % Some odd number
kernel = ones(windowWidth) / windowWidth^2;
localMeanImage = conv2(double(inputImage), kernel, 'same');
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!