如何将频谱图转换为图像
使用 MATLAB,我们将图像转换为音频(.wav 格式)。该音频文件也被转换为频谱图图像。现在我们正在尝试将此频谱图转换为原始输入图像
using MATLAB, we have converted image into audio (.wav format). Also this audio file is converted into spectrogram image. Now we are trying to convert this spectrogram into an original input image
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确,并且如果频谱图是在不重叠的“滑动窗口”上构建的,那么您可以简单地对每个时间块进行逆 FFT 并将它们组合起来以恢复音频信号。然后执行与将图像转换为音频所执行的操作相反的操作。
If I understand this correctly, and if the spectrogram was built over non-overlapping "sliding windows", you can then simply do the inverse FFT for each time chunk and combine them to recover the audio signal. Then you perform the inverse of the operation you did to covert image to audio.