aubio_pitch_get_confidence method

double aubio_pitch_get_confidence(
  1. Pointer<aubio_pitch_t> o
)

get the current confidence

\param o pitch detection object as returned by new_aubio_pitch()

\return the current confidence of the pitch algorithm

Implementation

double aubio_pitch_get_confidence(
  ffi.Pointer<aubio_pitch_t> o,
) {
  return _aubio_pitch_get_confidence(
    o,
  );
}