Denoise an eog signal

조회 수: 33 (최근 30일)
Mahsa Rm
Mahsa Rm 2021년 7월 31일
댓글: Star Strider 2021년 7월 31일
I have a noisy eog signal and I want to clear it but I'm not familiar with different filters. I've tried wavelet denoising toolbox but i couldn't see much change in my signal. I've attached the mat file.
any help will be appreciated.
  댓글 수: 2
Image Analyst
Image Analyst 2021년 7월 31일
I don't know what EOG is. What part of those signals is supposed to be noise and what part is good signal? Are those time domain signals or spectra?
Star Strider
Star Strider 2021년 7월 31일
I don't know what EOG is.
Electrooculogram.

댓글을 달려면 로그인하십시오.

답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 7월 31일
There are a few different filters to test with your data, e.g. data smooting, moving average, Savitzky-Golay, etc. You can test these ones by tuning and play with others, such as low-pass, band-pass filters.
figure
subplot(211)
plot(y1,'b')
y1_s=smoothdata(y1, 'sgolay');
hold on
plot(y1_s, 'r')
subplot(212)
plot(y2)
y2_s=smoothdata(y2, 'movmean', 50);
hold on
plot(y2_s)
figure
subplot(211)
plot(y3)
y3_s=smoothdata(y3, 'gaussian', 35);
hold on
plot(y3_s)
subplot(212)
plot(y4)
y4_s=smoothdata(y4, 'rlowess');
hold on
plot(y4_s)

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by