lasprs 0.8.0

Library for Acoustic Signal Processing (Rust edition, with optional Python bindings via pyo3)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Real time signal analysis blocks, used for visual inspection and showing
//! data 'on the fly'. Examples are real time power spectra plotting
//! (Spectrograms, Auto powers, ..., or )
mod ppm;
mod rtaps;
mod rtview;
mod simpleclip;
pub use ppm::{PPM, PPMDropSpeed, ClipState};

#[cfg(feature="python-bindings")]
pub use ppm::PPMWrapper;

pub use rtaps::{RtAps, RtApsResult};
pub use rtview::RtViewer;
pub use simpleclip::SimpleClipDetector;