我想在 tkinter GUI 中更新 matplotlib 图。我在下面的代码示例中尝试这样做。
import matplotlib
matplotlib.use('TkAgg')
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
from matplotlib.figure import Figure
import tkinter as tk
import tkinter.ttk as ttk
import sys
class Application(tk.Frame):
def __init__(self, master=None):
tk.Frame.__init__(self,master)
self.createWidgets()
def createWidgets(self):
fig=plt.figure(figsize=(8,8))
ax=fig.add_axes([0.1,0.1,0.8,0.8],polar=True)
canvas=FigureCanvasTkAgg(fig,master=root)
canvas.get_tk_widget().grid(row=0,column=1)
canvas.show()
self.plotbutton=tk.Button(master=root, text="plot", command=self.plot)
self.plotbutton.grid(row=0,column=0)
def plot(self):
for line in sys.stdout: #infinite loop, reads data of a subprocess
theta=line[1]
r=line[2]
ax.plot(theta,r,linestyle="None",maker='o')
plt.show(block=False)
plt.pause(0.001)
plt.cla()
#here set axes
root=tk.Tk()
app=Application(master=root)
app.mainloop()
目前的问题是,绘图函数中不知道 ax 对象。如果我尝试 plot(self,canvas,ax),GUI 不会打开。只有绘制数据的图形。
我想在 GUI 中看到的图中绘制数据。至少刷新率约为 3-5Hz。因为我是一个绝对的初学者,这个代码解决方案可能不是最好的方法。所以我会很高兴,如果有人能告诉我一个更聪明的解决方案。
谢谢!
原文由 user47091 发布,翻译遵循 CC BY-SA 4.0 许可协议
感谢 Abishek 花时间发布您自己的问题的答案。
我刚刚稍微修改了您的答案,以便它作为独立模块运行而无需来自 sys.stdout 的输入。还更改了 python 2.7 的 tkinter 导入