使用 c++ 移动图形和QWT
大家好,我想问一下,我如何使用 qwt 绘制移动图,因为我是 qwt 新手,所以我不知道
我想要一条曲线。我的数据源源不断地传来。那就是我想要两个相邻的点逐渐通过曲线连接希望你们明白我想说的 有什么办法可以做到这一点,
请帮助我,我将非常感谢你们
hello every one i want to ask that how can i plot a moving graph using qwt as i am new to qwt so i dont have any idea
like i want a curve. my data is continuously coming. that is i want two adjacent points to gradually join by curved line hope you people understands what i am trying to say
is there any way to do this
kindly help me i will be very thank full to you people
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个周期为 50ms(频率为 25Hz)的计时器,并更新计时器
超时
信号上的绘图数据。编辑:我仔细查看了 QwtPlot。我假设您将其与 QwtPlotCurve 一起使用。我认为你可以使用它的 SetRawData 方法,每 50 毫秒(或更长时间,取决于什么)您需要)更新数据数组,然后使用 replot 方法重新绘制图表。不知道是否必须在每次更新时调用 SetRawData,根据 设置数据 描述,你不知道。
或者您可以使用自动重绘。如果您使用 QwtPlot::setAutoReplot 启用它,调用 QwtPlotCurve::SetData 与新数据集应该自动重新绘制它。
Create a timer with 50ms period (25Hz frequency) and update the plot data on timers
timeout
signal.EDIT: I looked at the QwtPlot closer. I assume that you use it with QwtPlotCurve. I think you can use its SetRawData method and every 50 miliseconds (or longer, depends on what you need) update your data arrays, then replot your graph with the replot method. Don't know if you have to invoke SetRawData on every update, according to Set Data description, you don't.
Or you can use AutoReplot. If you enable it with QwtPlot::setAutoReplot, invoking QwtPlotCurve::SetData with new data set should replot it automatically.