控制显示浮点数组(fe 波形数据、FFT 数据等)
我正在处理音频,我想显示处理循环中的几个阶段。
例如,我有一些代表波形、FFT 数据、PowerSpectrum 数据和其他一些内容的浮点数组。全部浮动[]。
我想使用一个可能只有 y 轴缩放属性的控件来显示这些 float[] 缓冲区。
有谁知道 WPF 是否有类似的东西? 我并不是在寻找完整的图表库,我想要有尽可能简单的东西来完成这项工作。
I'm processing audio and I'd like to display several stages in my processing loop.
So I have for example some float arrays representing waveforms, FFT-data, PowerSpectrum-data, and some other stuff. All float[].
I'd like to display these float[] buffers using a single control that should probably have only a y-axis scale property.
Does anybody know if something like that is available somewhere for WPF ?
I'm not looking for complete charting libraries, I'd like to have something as simple as possible that does the job.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 WPF WriteableBitmapEx 项目 http://writeablebitmapex.codeplex.com/ 它允许您快速绘图在图像上。
I would suggest the WPF WriteableBitmapEx project http://writeablebitmapex.codeplex.com/ which allows you quick ways of drawing over an image.