欢喜火龙果

文章
5
资源
0
加入时间
2年10月21天

使用fftw对音频进行fft及ifft

在项目中需要提取音频中特定频率,需要使用fft和ifft,fftw满足要求。需要注意的地方是在做ifft后要做归一化处理,代码如下:// fft.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <stdio.h>#include <stdlib.h>#include <stdint.h>#i...