フィルターのクリア

local mean in empirical mode decomposition

4 ビュー (過去 30 日間)
Suzanne Hussein
Suzanne Hussein 2016 年 3 月 1 日
回答済み: Image Analyst 2016 年 3 月 5 日
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

回答 (1 件)

Image Analyst
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');

カテゴリ

Help Center および File ExchangeSignal Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by