For my current project in C++ / Qt I need a library (LGPL is preferred) which can calculate a spectrogram from a signal ( basically an array of doubles ). I already use Qwt for the GUI part.
Any suggestions? Thanks.
For my current project in C++ / Qt I need a library (LGPL is preferred) which can calculate a spectrogram from a signal ( basically an array of doubles ). I already use Qwt for the GUI part.
Any suggestions? Thanks.
It would be fairly easy to put together your own spectrogram. The steps are:
you could use fftw (fftw.org) to calculate the spectrogram, you would still need to plot the data, but that should not be a problem