Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/obss/BIOBSS
A package for processing signals recorded using wearable sensors, such as Electrocardiogram (ECG), Photoplethysmogram (PPG), Electrodermal activity (EDA) and 3-axis acceleration (ACC).
https://github.com/obss/BIOBSS
acceleration ecg eda electrocardiography electrodermal-activity feature-extraction galvanic-skin-response heart-rate-variability hrv photoplethysmography ppg signal-processing
Last synced: 3 months ago
JSON representation
A package for processing signals recorded using wearable sensors, such as Electrocardiogram (ECG), Photoplethysmogram (PPG), Electrodermal activity (EDA) and 3-axis acceleration (ACC).
- Host: GitHub
- URL: https://github.com/obss/BIOBSS
- Owner: obss
- License: mit
- Created: 2022-11-17T13:43:51.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-26T14:06:05.000Z (9 months ago)
- Last Synced: 2024-10-02T11:15:35.664Z (4 months ago)
- Topics: acceleration, ecg, eda, electrocardiography, electrodermal-activity, feature-extraction, galvanic-skin-response, heart-rate-variability, hrv, photoplethysmography, ppg, signal-processing
- Language: Python
- Homepage: https://biobss.readthedocs.io/en/latest/
- Size: 11.8 MB
- Stars: 102
- Watchers: 5
- Forks: 21
- Open Issues: 9
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gsr - BIOBSS - axis acceleration (ACC). (Library)
README
#
__BIOBSS__A package for processing signals recorded using wearable sensors, such as Electrocardiogram (ECG), Photoplethysmogram (PPG), Electrodermal activity (EDA) and 3-axis acceleration (ACC).
BIOBSS's main focus is to generate end-to-end pipelines by adding required processes from BIOBSS or other Python packages. Some preprocessing methods were not implemented from scratch but imported from the existing packages.
Main features:
- Applying basic preprocessing steps (*)
- Assessing quality of PPG and ECG signals
- Extracting features for ECG, PPG, EDA and ACC signals
- Performing Heart Rate Variability (HRV) analysis using PPG or ECG signals
- Extracting respiratory signals from PPG or ECG signals and estimating respiratory rate (*)
- Calculating activity indices from ACC signals
- Generating and saving pipelines(*): Not all methods were implemented from scratch but imported from existing packages.
The table shows the capabilites of BIOBSS and the other Python packages for physiological signal processing.
Functionality
BIOBSS
BioSPPy
HeartPy
HRV
hrv-analysis
pyHRV
pyPhysio
PySiology
Neurokit2
FLIRT
File reader
✓
✓
✓
Sliding window
✓
✓
✓
Preprocessing
✓
✓
✓
✓
Pipeline
✓(*)
✓
Processing
ECG
✓
✓
✓
✓
✓
PPG
✓
✓
✓
✓
✓
✓
IBI / RRI
✓
✓
✓
✓
✓
✓
✓
✓
EDA
✓
✓
✓
✓
✓
✓
ACC
✓
✓
✓
Feature Extraction
ECG
✓
PPG
✓
EDA
✓
✓
ACC
✓
✓
(*): Pipeline module differs between the two packages. BIOBSS pipeline aims to provide a more flexible and customizable pipeline for the user.
__Modified from__ Föll, Simon, et al. “FLIRT: A feature generation toolkit for wearable data.” Computer Methods and Programs in Biomedicine 212 (2021): 106461.
You can also read the [blog post about BIOBSS](https://medium.com/codable/biobss-a-biological-signal-processing-and-feature-extraction-library-137f9b082634).
##
__Preprocessing__
BIOBSS has modules with basic signal preprocessing functionalities. These include:
- Resampling
- Segmentation
- Normalization
- Filtering (basic filtering functions with commonly used filter parameters for each signal type)
- Peak detection##
__Visualization__
BIOBSS has basic plotting modules specific to each signal type. Using the modules, the signals and peaks can be plotted using Matplotlib or Plotly packages.##
__Signal Quality Assessment__
Signal quality assessment steps listed below can be used with PPG and ECG signals.
- Clipping detection
- Flatline detection
- Physiological checks
- Morphological checks
- Template matching##
__Feature Extraction__Signal
Domain / Type
FeaturesECG
Time
Morphological features related to fiducial point locations and amplitudesPPG
Time
Morphological features related to fiducial point locations and amplitudes, zero-crossing rate, signal to noise ratioFrequency
Amplitude and frequency of FFT peaks, signal powerStatistical
Mean, median, standard deviation, percentiles, mean absolute deviation, skewness, kurtosis, entropyVPG
Time
Morphological features related to fiducial point locations and amplitudesAPG
Time
Morphological features related to fiducial point locations and amplitudesACC
Frequency
Mean, median, standard deviation, min, max, range, mean absolute deviation, median absolute deviation, interquartile range, skewness, kurtosis, energy, entropy of fft signal; fft-peak related features and signal powerStatistical
Mean, median, standard deviation, min, max, range, mean absolute deviation, median absolute deviation, interquartile range, skewness, kurtosis, energy, momentum of ACC signals; peak related featuresCorrelation
Correlation of ACC signals of different axesEDA
Time
Rms, acr length, integral, average powerFrequency
FFT peak related features, energy, entropy of fft signalStatistical
Mean, standard deviation, min, max, range, kurtosis, skewness, momentumHjorth
Activity, complexity, mobility##
__Heart Rate Variability Analysis__
Heart rate variability analysis can be performed with BIOBSS and the parameters given below can be calculated for PPG or ECG signals.Domain
ParametersTime-domain
mean_nni, sdnn, rmssd, sdsd, nni_50, pnni_50, nni_20, pnni_20, cvnni, cvsd, median_nni, range_nni mean_hr, min_hr, max_hr, std_hr, mad_nni, mcv_nni, iqr_nniFrequency-domain
vlf, lf, hf, lf_hf_ratio, total_power, lfnu, hfnu, lnLF, lnHF, vlf_peak, lf_peak, hf_peakNonlinear
SD1, SD2, SD2_SD1, CSI, CVI, CSI_mofidied, ApEn, SampEn##
__Activity Indices__
BIOBSS has functionality to calculate activity indices from 3-axis acceleration signals. These indices are:
- Proportional Integration Method (PIM)
- Zero Crossing Method (ZCM)
- Time Above Threshold (TAT)
- Mean Amplitude Deviation (MAD)
- Euclidian Norm Minus One (ENMO)
- High-pass Filtered Euclidian (HFEN)
- Activity Index (AI)Reference: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0261718
The preprocessing steps which should be applied on the raw acceleration differs for each of the activity indices listed above. In other words, each activity index can be calculated only from specific datasets. These datasets can be generated using BIOBSS both independently or as a part of activity index calculation pipeline.
The generated datasets are:
- UFXYZ: unfiltered acc signals
- UFM: magnitude of unfiltered acc signals
- UFM_modified: modified magnitude of unfiltered signals (absolute(UFM-length(UFM)))
- UFNM: normalized magnitude of unfiltered acc signals
- FXYZ: filtered acc signals
- FXYZ_modified: modified filtered acc signals (absolute(FXYZ))
- FMpre: magnitude of filtered acc signals
- SpecialXYZ: filtered acc signals (special filter parameters)
- SpecialM: magnitude of filtered acc signals (special filter parameters)
- FMpost: filtered magnitude of acc signals
- FMpost_modified: modified of filtered magnitude of acc signals (absolute(FMpost))##
__Respiratory Analysis__
BIOBSS has modules to perform basic respiratory analyses. The functionalities are:
- Preprocessing PPG or ECG signals for respiratory analysis using predefined filter parameters
- Extracting respiratory signals from modulations (amplitude modulation, frequency modulation, baseline wander) in PPG or ECG signals
- Estimating respiratory rate from the extracted respiratory signals
- Calculation respiratory quality indices (RQI)
- Fusing respiratory rate estimates##
__Pipeline Generation__The main focus of BIOBSS is to generate and save pipelines for signal processing and feature extraction problems. Thus, it is aimed to :
- Simplify the preprocessing procedures by generating signal and event channels
- Make it easy to use processes
- Decrease the amount of work for repetitive processes and for those who work on multiple datasets
- Make it possible to save and share pipelines to compare results of different works
To learn more, visit the [Documentation page](https://biobss.readthedocs.io/en/latest/).##
InstallationThrough pip,
pip install biobss
or build from source,
git clone https://github.com/obss/biobss.git
cd BIOBSS
python setup.py install##
Dependencies- neurokit2
- antropy
- cvxopt
- heartpy
- scipy
- py_ecg_detectors##
Tutorial notebooks- PPG Signal Processing [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/obss/BIOBSS/blob/main/examples/ppg_processing.ipynb)
- ECG Signal Processing [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/obss/BIOBSS/blob/main/examples/ecg_processing.ipynb)
- ACC Signal Processing [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/obss/BIOBSS/blob/main/examples/acc_processing.ipynb)
- HRV Analysis [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/obss/BIOBSS/blob/main/examples/hrv_analysis.ipynb)
- Respiratory Analysis [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/obss/BIOBSS/blob/main/examples/respiratory_analysis.ipynb)##
LicenseLicensed under the [MIT](LICENSE) License.
##
ContributingIf you have ideas for improving existing features or adding new features to BIOBSS, please contact us.
##
Contributors
[Çağatay Taşcı](https://github.com/tascic)[İpek Karakuş](https://github.com/karakusipek)
[Devrim Çavuşoğlu](https://github.com/devrimcavusoglu)
[Fatih Çağatay Akyön](https://github.com/fcakyon)