Matplotlib not showing librosa specshow in custom class constructor
I have a custom "waveform"-class which I use for tkinter-applications. Due to testing reasons, i would like to see a spectrogram via librosa.display.specshow() without calling any tkinter-app. Sadly, the following code does not produce an output: from matplotlib.figure import Figure from matplotlib.pyplot import show import librosa as lr import librosa.display as lrd class waveform(): def… Read More Matplotlib not showing librosa specshow in custom class constructor