Metadata-Version: 2.4
Name: AnuSamAlgorithm
Version: 0.1.3
Summary: A package for ultra-fast detection of ECG r peaks
Author: Anumita Singha Roy
Author-email: Anumita Singha Roy <anumitasam@zohomail.in>
License: Apache-2.0
Project-URL: Homepage, https://pypi.org/project/AnuSamAlgorithm/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.20.0

# AnuSamAlgorithm

A Python package for ultra-fast real-time detection of ECG R-peaks. Based on a novel mathematical formulae.
Faster than any of the existing SOTA algorithms. We have tested our algorithm with 4 gold standard dataset.
MIT-BIH Arrythmia Dataset, Lobachevsky University Dataset, MIT-BIH NST dataset, and MIT-BIH QT dataset.

## Installation

```bash
pip install AnuSamAlgorithm


##USAGE
from AnuSamAlgorithm import find_peak

#filtering;
ecg_signal = bandpass_filter(ecg_signal, lowcut=0.5, highcut=40)
r_peaks = find_peak(ecg_signal, fs)
