Closed mprevot closed 2 years ago
I have:
var sg = new SpectrogramGenerator(_sampleRate, fftSize, stepSize, 20, maxFreq); sg.Add(_audio); sg.SetColormap(Colormap.Blues); // deprecated
What is the replacement for SetColormap ?
SetColormap
Hi @mprevot, it looks like you can assign directly to the Colormap field:
Colormap
var sg = new SpectrogramGenerator(_sampleRate, fftSize, stepSize, 20, maxFreq); sg.Add(_audio); sg.Colormap = Colormap.Blues;
I have:
What is the replacement for
SetColormap
?