使用 WXAgg 后端处理 matplotlib 动画中的帧大小调整
我正在做一些动画绘图并使用 matplotlib 示例作为指导。 matplotlib 示例
通过该页面中的以下链接示例,动画在框架时出现一些明显的问题已调整大小。处理这个问题的正确或最好的方法是什么? animation_blit_wx.py
谢谢
I am doing some animated plotting and using the the matplotlib examples as a guideline. matplotlib examples
With the following linked example from that page the animation has some obvious problems when the frame is resized. What is the correct or best way to deal with this? animation_blit_wx.py
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下animation_blit_qt4.py 示例。
你必须手动检查图形大小,如果它改变了,你需要重新绘制背景。
下面是 qt 示例中执行此操作的部分,self 是一个图形画布:
Take a look at the animation_blit_qt4.py example.
You have to check the figure size manually, and if it has changed you need to draw the background again.
Heres the part which does that from the qt example, self is a Figure Canvas: