lasp/README.md

115 lines
3.7 KiB
Markdown
Raw Normal View History

2018-03-06 20:15:21 +00:00
# Library for Acoustic Signal Processing
2023-01-13 07:59:22 +00:00
- Master branch: [![Build Status](https://drone.ascee.nl/api/badges/ASCEE/lasp/status.svg?ref=refs/heads/master)](https://drone.ascee.nl/ASCEE/lasp)
- Develop branch: [![Build Status](https://drone.ascee.nl/api/badges/ASCEE/lasp/status.svg?ref=refs/heads/develop)](https://drone.ascee.nl/ASCEE/lasp)
2023-01-12 21:27:42 +00:00
Welcome to LASP: Library for Acoustic Signal Processing. LASP is a C++ library
2023-01-12 10:50:34 +00:00
with a Python interface which is supposed to acquire and process (multi) sensor data in real time on a PC and output results.
2018-03-06 20:15:21 +00:00
Current features that are implemented:
2023-01-20 13:22:48 +00:00
2023-01-20 13:22:48 +00:00
- Communication with data acquisition (DAQ) devices, of which:
- Internal sound cards via the [RtAudio](http://www.music.mcgill.ca/~gary/rtaudio) backend. Many thanks to Gary P. Scavone et al.
- [Measurement Computing](https://www.mccdaq.com) [DT9838A](https://www.mccdaq.com/Products/Sound-Vibration-DAQ/DT9837) signal analyzer.
- Configuration of DAQ devices: AC coupling, IEPE, sensitivity physical
quantities.
- Recording of signals from these DAQ devices, and storing in a HDF5 file.
- Filter designers to create A/C sound pressure weighting
- Biquad filter designers for low pass, high pass, peaking and notch filters
- A Peak Programme Meter (PPM) to monitor signal levels from DAQ and to watch
for signal clipping.
- A signal generator to create sine waves, sweeps and noise (white / pink).
- Equalizers to equalize the output prior to sending.
2018-03-06 20:26:08 +00:00
- Averaged power spectra and power spectral density determination
using Welch' method. Taper functions of Hann, Hamming, Bartlett and
Blackman are provided.
2023-01-20 13:22:48 +00:00
- (One third) octave filter bank filters designed to comply with IEC 61260
(1995).
2018-03-06 20:15:21 +00:00
- Slow and fast time updates of (A/C/Z) weighted sound pressure levels
2023-01-20 13:22:48 +00:00
- Full Sound Level Meter implementation
- Real time Sound Level meter, Power / Transfer function estimator
- Spectra data smoothing algorithms
- Sensor calibration for microphones
Future features (wish-list)
2023-01-20 13:22:48 +00:00
- Conventional and delay-and-sum beam-forming algorithms
2023-01-20 13:22:48 +00:00
- Impedance tube measurement processing
2018-03-06 20:15:21 +00:00
2023-01-20 13:22:48 +00:00
For now, the source code is well-documented on [lasp.ascee.nl](https://lasp.ascee.nl) but it requires some
additional documentation (the math behind it). This is maintained
in a sister repository [lasp-doc](https://code.ascee.nl/ascee/lasp-doc).
2018-03-06 20:15:21 +00:00
If you have any question(s), please feel free to contact us: [email](info@ascee.nl).
2023-04-21 11:27:45 +00:00
# Installation - Linux (Debian-based)
2023-01-12 10:50:34 +00:00
## Dependencies
- `$ sudo apt install python3-pybind11 libopenblas-dev python3-pip python3-scipy libusb-1.0-0-dev libpulse-dev cmake-curses-gui python3-h5py`
2023-01-12 10:50:34 +00:00
- `$ pip3 install --user -r requirements.txt`
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
If building RtAudio with the ALSA backend, you will also require the following packages:
2022-01-13 12:59:35 +00:00
2023-01-12 10:50:34 +00:00
- libclalsadrv-dev
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
If building RtAudio with the Jack Audio Connection Kit (JACK) backend, you will also require the following packages:
2023-01-12 10:50:34 +00:00
- libjack-jackd2-dev
2023-01-12 10:50:34 +00:00
## Download & build
2023-01-12 10:50:34 +00:00
- `$ git clone --recursive https://code.ascee.nl/ASCEE/lasp.git`
- `$ cd lasp`
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
For a release build:
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
- `$ cmake .`
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
or optionally for a custom build:
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
- `$ ccmake .`
2022-07-20 12:58:48 +00:00
2023-01-12 10:50:34 +00:00
Configure and run:
2022-01-13 12:59:35 +00:00
2023-01-12 10:50:34 +00:00
- `$ make -j`
2022-01-13 12:59:35 +00:00
2023-01-12 10:50:34 +00:00
### Build documentation
2022-01-13 12:59:35 +00:00
2023-01-20 13:22:48 +00:00
In directory:
`$ sudo apt install doxygen graphviz`
`$ pip install doxypypy`
2022-01-13 12:59:35 +00:00
2023-01-12 10:50:34 +00:00
While still in lasp dir:
2023-01-12 10:50:34 +00:00
`$ doxygen`
2023-01-12 10:50:34 +00:00
This will build the documentation. It can be read by:
2023-01-12 10:50:34 +00:00
`$ <YOUR-BROWSER> doc/html/index.html`
2023-01-20 13:22:48 +00:00
Or via docker:
`$ docker build -t lasp_ascee_nl:latest .`
2023-01-12 10:50:34 +00:00
## Install
2023-01-12 10:50:34 +00:00
For an editable install (while developing):
2023-01-12 10:50:34 +00:00
- `$ pip3 install --prefix=$HOME/.local -e .`
2023-01-12 10:50:34 +00:00
To install locally, for a fixed version:
- `$ pip3 install --prefix=$HOME/.local`
## Usage
- See examples directories for IPython notebooks.
- Please refer to the [documentation](https://lasp.ascee.nl/) for features.