aubio_onset_get_threshold method

double aubio_onset_get_threshold(
  1. Pointer<aubio_onset_t> o
)

get onset peak picking threshold

\param o onset detection object as returned by new_aubio_onset() \return current onset detection threshold

Implementation

double aubio_onset_get_threshold(
  ffi.Pointer<aubio_onset_t> o,
) {
  return _aubio_onset_get_threshold(
    o,
  );
}