如何将频谱图转换为3d图。蟒蛇

Joh*_*Doe 5 python matplotlib wav colormap

我正在尝试实现wav文件的瀑布图。在我的尝试中,我注意到这基本上是3d的频谱图(或与我所需的接近)。我正在尝试使用numpy和matplotlib在Python中执行此操作。

我的主要问题是我不知道如何将频谱图从matplotlib更改为3d图。

我的“代码”示例:

sample ,data = wavfile.read('file.wav')
F = Figure()
a = F.add_subplot(111,projection='3d') 
Spec, t, freq, im = a.specgram(data,Fs=2)
Run Code Online (Sandbox Code Playgroud)

我已经走了这么远,不知道下一步该怎么做。我想将已经存在的情节更改为3d。由于缺乏知识,我没有将其更改为3d的代码。

是否可以将2d图转换为3d?如果可以,怎么办?我最好用Specgram数据构建一个新图吗?

期望的结果将类似于以下内容: 理想的结果 另一个理想的结果 感谢您的任何答复。

Low*_*put 3

以下是来自scipy的示例信号的 3D 和 2D 频谱图,您可以在本页末尾找到。

在此输入图像描述

在此输入图像描述

from matplotlib import mlab
import matplotlib.pyplot as plt
import numpy as np

# Fixing random state for reproducibility
np.random.seed(666)

title = ('2 Vrms sine wave with modulated frequency around 3kHz, '
         'corrupted by white noise of exponentially decreasing '
         'magnitude sampled at 10 kHz.')

fs = 10e3
N = 1e5
amp = 2 * np.sqrt(2)
noise_power = 0.01 * fs / 2
t = np.arange(N) / float(fs)
mod = 500*np.cos(2*np.pi*0.25*t)
carrier = amp * np.sin(2*np.pi*3e3*t + mod)
noise = np.random.normal(scale=np.sqrt(noise_power), size=t.shape)
noise *= np.exp(-t/5)
y = carrier + noise

def specgram3d(y, srate=44100, ax=None, title=None):
  if not ax:
    ax = plt.axes(projection='3d')
  ax.set_title(title, loc='center', wrap=True)
  spec, freqs, t = mlab.specgram(y, Fs=srate)
  X, Y, Z = t[None, :], freqs[:, None],  20.0 * np.log10(spec)
  ax.plot_surface(X, Y, Z, cmap='viridis')
  ax.set_xlabel('time (s)')
  ax.set_ylabel('frequencies (Hz)')
  ax.set_zlabel('amplitude (dB)')
  ax.set_zlim(-140, 0)
  return X, Y, Z

def specgram2d(y, srate=44100, ax=None, title=None):
  if not ax:
    ax = plt.axes()
  ax.set_title(title, loc='center', wrap=True)
  spec, freqs, t, im = ax.specgram(y, Fs=fs, scale='dB', vmax=0)
  ax.set_xlabel('time (s)')
  ax.set_ylabel('frequencies (Hz)')
  cbar = plt.colorbar(im, ax=ax)
  cbar.set_label('Amplitude (dB)')
  cbar.minorticks_on()
  return spec, freqs, t, im

fig1, ax1 = plt.subplots()
specgram2d(y, srate=fs, title=title, ax=ax1)

fig2, ax2 = plt.subplots(subplot_kw={'projection': '3d'})
specgram3d(y, srate=fs, title=title, ax=ax2)
  
plt.show()
Run Code Online (Sandbox Code Playgroud)

奖金:

您可以通过使用 scipy 创建 wav 文件来收听信号:

from scipy.io import wavfile
wavfile.write('sig.wav', int(fs), y)
Run Code Online (Sandbox Code Playgroud)