AEnd-to-End PPG processing pipeline: from quality assessment and motion artifacts romval to HR/HRV extraction
Project description
End-to-End PPG Processing Pipeline for Wearables: From Quality Assessment and Motion Artifacts Removal to HR/HRV Feature Extraction (E2E-PPG)
Welcome to the PPG Signal Processing Pipeline, a comprehensive package designed for extracting accurate Heart Rate (HR) and Heart Rate Variability (HRV) data from Photoplethysmogram (PPG) signals.
Introduction
This project provides a robust pipeline for processing PPG signals, extracting reliable HR and HRV parameters. The pipeline encompasses various stages, including filtering, signal quality assessment (SQA), signal reconstruction, peak detection and interbeat interval (IBI) extraction, and HR and HRV computation.
Preprocessing
The input raw PPG signal undergoes filtering to remove undesired frequencies. A second-order Butterworth bandpass filter is employed, allowing frequencies within a specific range to pass while rejecting frequencies outside.
Signal Quality Assessment (SQA)
SQA involves identifying clean and noisy parts within PPG signals. Our SQA approach requires PPG signals in a fixed length, which necessitates segmenting the input signals. To this end, we apply a moving window segmentation technique, where the PPG signals are divided into overlapping segments, each spanning 30 seconds, by sliding a window over the signal. The SQA process includes PPG feature extraction and classification, employing a one-class support vector machine model to distinguish between "Reliable" and "Unreliable" segments.
Noise Reconstruction
Noisy parts within PPG signals, shorter than a specified threshold, are reconstructed using a deep convolutional generative adversarial network (GAN). The GAN model includes a generator trained to produce synthetic clean PPG segments and a discriminator to differentiate real from synthetic signals. The reconstruction process is applied iteratively to ensure denoising.
Peak Detection and IBI Extraction
Systolic peaks in PPG signals are identified using a deep-learning-based method with dilated Convolutional Neural Networks (CNN) architecture. PPG peak detection enables the extraction of IBI values that serve as the basis for obtaining HR and HRV. IBI represents the time duration between two consecutive heartbeats and is computed by measuring the time interval between systolic peaks within the PPG signals.
HR and HRV Extraction
HR and HRV parameters are computed from the extracted IBIs. A variety of metrics are calculated, including:
- HR: Heart rate
- MeanNN: Mean of the RR intervals
- SDNN: Standard deviation of the RR intervals
- ... (list continues for various HRV metrics)
Usage
Install the required packages available in requirements.txt
.
See the Example.py
file for usage details. Load your PPG signal and call the HRV_Extraction()
function in E2E_PPG_Pipeline.py
to extract HR and HRV parameters. Define the sample rate and window length for HR and HRV extraction.
Citation
If you use our work in your research, please consider citing the following papers:
-
End-to-End PPG Processing Pipeline for Wearables: From Quality Assessment and Motion Artifacts Removal to HR/HRV Feature Extraction (PPG Pipeline Paper)
- Conference: 2023 IEEE International Conference on Bioinformatics and Biomedicine (BIBM)
- Authors: Mohammad Feli, Kianoosh Kazemi, Iman Azimi, Yuning Wang, Amir Rahmani, Pasi Liljeberg
-
@inproceedings{feli2023end, title={End-to-End PPG Processing Pipeline for Wearables: From Quality Assessment and Motion Artifacts Removal to HR/HRV Feature Extraction}, author={Feli, Mohammad and Kazemi, Kianoosh and Azimi, Iman and Wang, Yuning and Rahmani, Amir and Liljeberg, Pasi}, booktitle={2023 IEEE International Conference on Bioinformatics and Biomedicine (BIBM)}, year={2023}, organization={IEEE} }
-
An Energy-Efficient Semi-Supervised Approach for On-Device Photoplethysmogram Signal Quality Assessment (PPG Quality Assessment Paper)
- Journal: Smart Health
- Authors: Mohammad Feli, Iman Azimi, Arman Anzanpour, Amir M Rahmani, Pasi Liljeberg
-
@article{feli2023energy, title={An Energy-Efficient Semi-Supervised Approach for On-Device Photoplethysmogram Signal Quality Assessment}, author={Feli, Mohammad and Azimi, Iman and Anzanpour, Arman and Rahmani, Amir M and Liljeberg, Pasi}, journal={Smart Health}, volume={28}, pages={100390}, year={2023}, publisher={Elsevier} }
-
PPG Signal Reconstruction Using Deep Convolutional Generative Adversarial Network (PPG Reconstruction Paper)
- Conference: 2022 44th Annual International Conference of the IEEE Engineering in Medicine & Biology Society (EMBC)
- Authors: Yuning Wang, Iman Azimi, Kianoosh Kazemi, Amir M Rahmani, Pasi Liljeberg
-
@inproceedings{wang2022ppg, title={PPG Signal Reconstruction Using Deep Convolutional Generative Adversarial Network}, author={Wang, Yuning and Azimi, Iman and Kazemi, Kianoosh and Rahmani, Amir M and Liljeberg, Pasi}, booktitle={2022 44th Annual International Conference of the IEEE Engineering in Medicine \& Biology Society (EMBC)}, pages={3387--3391}, year={2022}, organization={IEEE} }
-
Robust PPG Peak Detection Using Dilated Convolutional Neural Networks (PPG Peak Detection Paper)
- Journal: Sensors
- Authors: Kianoosh Kazemi, Juho Laitala, Iman Azimi, Pasi Liljeberg, Amir M Rahmani
-
@article{kazemi2022robust, title={Robust PPG Peak Detection Using Dilated Convolutional Neural Networks}, author={Kazemi, Kianoosh and Laitala, Juho and Azimi, Iman and Liljeberg, Pasi and Rahmani, Amir M}, journal={Sensors}, volume={22}, number={16}, pages={6054}, year={2022}, publisher={MDPI} }
Contributing
We welcome contributions to enhance and extend the capabilities of the PPG Signal Processing Pipeline. Please review our Contribution Guidelines for more information.
License
This project is licensed under the terms of the MIT License.
Acknowledgments
We express our gratitude to [mention any third-party libraries or resources] for their invaluable contributions to this project.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.