how to find local maxima and minima of a noisy ECG

조회 수: 3 (최근 30일)
Krish P
Krish P 2013년 1월 5일
댓글: Image Analyst 2014년 12월 6일
Is there an easy way to find all local minima of an noisy ecg signal(ecg+baseline wander)with out using function? After that all local maxima are to be connected by a cubic spline curve as the upper envelope e1(t), similarly all local minima by a spline curve as the lower envelope e2(t).Next step is to find the mean of the two envelope ie
m1(t)= [e1(t)+e2(t)]/2.
PROGRAM UP TO GENERATION OF ECG NOISY SIGNAL
n=512;
fs=n/.83;
tp=.83*10;
x1=ecg(512);
t=0:1/fs:tp-1/fs;
z=repmat(x1,1,10);
subplot(231);
plot(t,z);
title('ecg signal');
xlabel('time');
ylabel('amplitude');
t2=0:1/512:10-(1/512);
s1=.1*cos(2*pi*.5*t2);
s2=.1*cos(2*pi*.4*t2);
baseline=s1+s2;
subplot(232);
plot(t2,baseline); %BASELINE WANDER
xlabel('time');
ylabel('amplitude');
y=z+baseline; % NOISY ECG
disp(y);
subplot(233);
plot(t,y); % NOISY ECG

채택된 답변

Walter Roberson
Walter Roberson 2013년 1월 5일
편집: Walter Roberson 2013년 1월 5일
local_mins = find( signal(1:end-2) > signal(2:end-1) & signal(2:end-1) < signal(3:end) );
local_maxs = find( signal(1:end-2) < signal(2:end-1) & signal(2:end-1) > signal(3:end) );
e1 = spline( local_mins, signal(local_mins), 1:length(signal) );
e2 = spline( local_maxs, signal(local_maxs), 1:length(signal) );
m1 = (e1 + e2) / 2;
  댓글 수: 3
saleema
saleema 2014년 12월 6일
sir, i want a matlab codes for finding local maxima and local minima and after their envelop by using spline interpolation
Image Analyst
Image Analyst 2014년 12월 6일
Post a new question, and say if you have the Image Processing Toolbox (so you can use imdilate and imerode to get the local max and min).

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by