Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

A package for processing signals recorded using wearable sensors, such as Electrocardiogram (ECG), Photoplethysmogram (PPG), Electrodermal activity (EDA) and 3-axis acceleration (ACC).

License

NotificationsYou must be signed in to change notification settings

obss/BIOBSS

Repository files navigation

Python versionsdownloadsPyPI version
License: MITBuild statusCode style: black

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.

FunctionalityBIOBSSBioSPPyHeartPyHRVhrv-analysispyHRVpyPhysioPySiologyNeurokit2FLIRT
File reader
Sliding window
Preprocessing
Pipeline✓(*)
ProcessingECG
PPG
IBI / RRI
EDA
ACC
Feature ExtractionECG
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 theblog post about BIOBSS.

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

SignalDomain / TypeFeatures
ECGTimeMorphological features related to fiducial point locations and amplitudes
PPGTimeMorphological features related to fiducial point locations and amplitudes, zero-crossing rate, signal to noise ratio
FrequencyAmplitude and frequency of FFT peaks, signal power
StatisticalMean, median, standard deviation, percentiles, mean absolute deviation, skewness, kurtosis, entropy
VPGTimeMorphological features related to fiducial point locations and amplitudes
APGTimeMorphological features related to fiducial point locations and amplitudes
ACCFrequencyMean, 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 power
StatisticalMean, median, standard deviation, min, max, range, mean absolute deviation, median absolute deviation, interquartile range, skewness, kurtosis, energy, momentum of ACC signals; peak related features
CorrelationCorrelation of ACC signals of different axes
EDATimeRms, acr length, integral, average power
FrequencyFFT peak related features, energy, entropy of fft signal
StatisticalMean, standard deviation, min, max, range, kurtosis, skewness, momentum
HjorthActivity, 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.

DomainParameters
Time-domainmean_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_nni
Frequency-domainvlf, lf, hf, lf_hf_ratio, total_power, lfnu, hfnu, lnLF, lnHF, vlf_peak, lf_peak, hf_peak
NonlinearSD1, 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 theDocumentation page.

Installation

Through pip,

pip install biobss

or build from source,

git clone https://github.com/obss/biobss.gitcd BIOBSSpython setup.py install

Dependencies

  • neurokit2
  • antropy
  • cvxopt
  • heartpy
  • scipy
  • py_ecg_detectors

Tutorial notebooks

  • PPG Signal ProcessingOpen In Colab
  • ECG Signal ProcessingOpen In Colab
  • ACC Signal ProcessingOpen In Colab
  • HRV AnalysisOpen In Colab
  • Respiratory AnalysisOpen In Colab

License

Licensed under theMIT License.

Contributing

If you have ideas for improving existing features or adding new features to BIOBSS, please contact us.

Contributors

Çağatay Taşcı

İpek Karakuş

Devrim Çavuşoğlu

Fatih Çağatay Akyön


[8]ページ先頭

©2009-2025 Movatter.jp