필터 지우기
필터 지우기

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 CenterFile Exchange에서 Signal Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by