local mean in empirical mode decomposition
3 次查看(过去 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!