[][src]Crate qrs_detector

This crate provides a realtime ECG QRS detector.

The implementation is based on this article.

QrsDetector does not use dynamic memory allocation. Instead, this crate relies on generic_array, which means there's a bit of setup necessary to set the size of internal buffers.

For more information, see QrsDetector.

Re-exports

pub use sliding_window::typenum;

Modules

sampling

Helpers for working with sampling frequencies and sample numbers.

Structs

QrsDetector

Find QRS complex in real-time sampled ECG signal.