ml-rolling-ball-baseline
    Preparing search index...

    ml-rolling-ball-baseline

    ml-rolling-ball-baseline

    NPM version build status npm download

    Rolling ball baseline correction. The algorithm was initially described in [1].

    1. Kneen, M. A.; Annegarn, H. J. Algorithm for Fitting XRF, SEM and PIXE X-Ray Spectra Backgrounds. Nuclear Instruments and Methods in Physics Research Section B: Beam Interactions with Materials and Atoms 1996, 109–110, 209–213.

    2. Liland KH, Almøy T, Mevik B (2010). “Optimal Choice of Baseline Correction for Multivariate Calibration of Spectra.” Applied Spectroscopy, 64, 1007-1016.

    $ npm i ml-rolling-ball-baseline

    import { rollingBall } from 'ml-rolling-ball-baseline';

    // spectrum is an array
    const spectrum=[1, 2, 1, ...];

    // you need to provide and array with the data and
    // two numbers indicating the "size" of the balls,
    // i.e., the maximization/minimization and the smoothing window.
    const baseline = rollingBall(spectrum, 200, 400);

    MIT