C# 中的快速傅立叶变换
可能的重复:
c# 中的快速傅立叶变换
我正在寻找执行实时 FFT 的示例( C# 中线路输入或麦克风音频数据的快速傅立叶变换。我的目标是实时确定音频数据中是否存在特定音符。任何例子表示赞赏。
Possible Duplicate:
Fast fourier transform in c#
I am looking for an example of performing a real time FFT (Fast Fourier Transform) of line in or mic audio data in C#. My goal is to determine in real time if a particular note is present in the audio data. Any examples appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AForge.NET 是一个支持快速傅立叶变换的开源库。
ExocortexDSP 也是另一种选择。
ExocortexDSP 示例如下所示:
AForge.NET is an open-source library with Fast Fourier Transform support.
ExocortexDSP is also another option.
ExocortexDSP example would look something like this: