Paper reading and analysis: A Robust Motion Artifact Detection Algorithm for Accurate Detection of Heart Rates

论文阅读和分析:A Robust Motion Artifact Detection Algorithm for Accurate Detection of Heart Rates from Photoplethysmographic Signals using Time-Frequency Spectral Features


main content:

1. Extract the spectral features of the PPG signal, and then use the machine learning algorithm SVM to judge the motion artifact part of the PPG signal;
2. The method of feature extraction is relatively novel and worth learning;


flow chart:

insert image description here

Extracted features:

1. Use VFCDM to convert PPG signal to time spectrum;

2. Calculation features:

P n o i s e P_{noise} Pnoise:
P n o i s e = P T F S − ∑ i = 1 3 ∑ t A M i , t P_{noise}=P_{TFS}-\sum_{i=1}^{3}\sum_{t}AM_{i,t} Pnoise=PTFSi=13tAMi,t
d f F M df_{FM} dfFM:
d f F M = ∑ i = 2 3 ∑ t ∣ F M i , t − i × F M 1 , t ∣ df_{FM}=\sum_{i=2}^{3}\sum_{t}\bigl|FM_{\mathrm{i},t}-i\times FM_{1,t}\bigr| dfFM=i=23t FMi,ti×FM1,t
d f H R df_{HR} dfHR:
d f H R = ∑ t ∣ F M 1 , t − m e d i a n ( 1 P P ) ∣ df_{HR}=\sum_t\left|FM_{1,t}-\mathrm{median}\left(\frac{1}{PP}\right)\right| dfHR=t FM1,tmedian(PP1)
3. Use motion to cause motion artifacts as labels;


Experimental results:
Compared with several other methods, motion artifacts can be accurately identified:
insert image description here


reference:

A Robust Motion Artifact Detection Algorithm for Accurate Detection of Heart Rates from Photoplethysmographic Signals using Time-Frequency Spectral Features

Guess you like

Origin blog.csdn.net/KPer_Yang/article/details/131134469