Spectrograms - Am I missing something?

151 Views Asked by At

I have the following signal:

enter image description here

I'm trying to compute a Spectrogram algorithm, but, don't think I'm doing it right..

I have computed the following:

1) STFT (size 256 with an overlap of 128) 2) Computed the logs using: '10 * log10(sqrt(re * re + im + im)

This is the result that I get:

enter image description here

But when I use pylab in Python (for the same signal): x = pl.specgram(signal)

I get the following result:

enter image description here

Using the matplotlib I get the following:

enter image description here

Obviously, these are very different results.. I don't know why I'm getting these, I'm new to signal processing and spectrograms. Hope someone can help

EDIT:

Here is the Python code.

def wavToSpec(wavefile,log=False,norm=False):
    wavArr,wavParams = wavToArr(wavefile)
    print wavParams
    return  mlab.specgram(wavArr,
            NFFT=256,Fs=wavParams[2],window=mlab.window_hanning,noverlap=128)

p, freqs, bins = wavToSpec("test.wav")
pylab.plot(p);
pylab.show()
0

There are 0 best solutions below