- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经看过,但没有发现之前的问题足够具体,如果重复出现,我们深表歉意。目标:GUI 使用 pylab 的 pcolor 绘制的不同矩阵数据不断更新图形,以便有一个正在运行的动画。但是用户应该能够通过 Tkinter 小部件按钮播放、暂停、停止动画。
在我使用 set_array()、draw() 和 canvas.manager.after() 获得 matplotlib 的答案之前......,我有使我能够开始动画的工作代码,但我不知道如何停止或暂停它,当只使用 matplotlib 功能时,所以我决定使用 Tkinter straigt up 而不是 matplotlib 的 Tcl/Tk 包装器。这是仅供引用的工作代码,以防万一有人有任何想法。但是继续做真题。
# mouse click the "Play" button widget to play animation
# PROBLEMS:
# 1. can't pause or stop animation. once loop starts it cant be broken
# 2. set_array attribute for pcolor PolyCollection object only updates the matrix
# C of pcolor, however for my actual application, I will be using pcolor(x,y,C)
# and will have new x,y, and C per plot. Unlike line object, where set_xdata and
# set_ydata are used, I can't find an analogy to pcolor. If I were updating an
# image I could use set_data(x,y,C), but i am not importing an image. I assume
# pcolor is still my best bet unless (as in Matlab) there is an equivalent
# image(x,y,C) function?
import time as t
from pylab import *
from matplotlib.widgets import Button
ion()
def pressPlay(event):
#fig=figure()
ax = subplot(111)
subplots_adjust(bottom=0.2)
c=rand(5,5)
cplot=pcolor(c)
draw()
for i in range(5):
c=rand(5,5)
cplot.set_array(c.ravel())
cplot.autoscale()
title('Ionosphere '+str(i+1))
t.sleep(3)
draw()
axPlay = axes([0.7, 0.05, 0.1, 0.075])
bPlay = Button(axPlay, 'Play')
bPlay.on_clicked(pressPlay)
顺便说一句:在导入 pylab 时,TkAgg 后端会自动设置为在 matplotlib 中使用...我认为。或者我以某种方式自动使用 TkAgg。我正在运行 Linux、Python 2.6.4、Ipython 0.10。
我操纵了从 Daniweb IT 讨论社区找到的代码,以便使用 Tkinter 和 update_idletasks() 函数我可以播放,停止标签小部件的颜色变化。只要安装了 Tkinter,就可以单独在 python 上运行。没有使用 matplotlib 或 pylab。这是工作代码,也是我质疑的最终代码的主干。
# This is meant to draw Start and Stop buttons and a label
# The Start button should start a loop in which the label
# is configured to change color by looping through a color list.
# At each pass through the loop the variable self.stop is checked:
# if True the loop terminates.
# The Stop button terminates the loop by setting the
# variable self.stop to True.
# The Start button restarts the animation from the beginning
# if Stop was hit last, or restarts the animation from where it left off
# if pause was hit last.
# The loop also terminates on the last color of the list, as if stop were hit
from Tkinter import *
colors = ['red','green','blue','orange','brown','black','white','purple','violet']
numcol=len(colors)
class SGWidget(Frame):
def __init__(self, parent=None):
Frame.__init__(self, parent)
self.top_frame = Frame(bg='green')
self.top_frame.grid()
# enter event loop until all idle callbacks have been called.
self.top_frame.update_idletasks()
self.makeToolbar()
# construct a label widget with the parent frame top_frame
self.label = Label(self.top_frame,text = 'Text',bg='orange')
self.label.grid()
# initialize (time index t)
self.t=0
def makeToolbar(self):
self.toolbar_text = ['Play','Pause','Stop']
self.toolbar_length = len(self.toolbar_text)
self.toolbar_buttons = [None] * self.toolbar_length
for toolbar_index in range(self.toolbar_length):
text = self.toolbar_text[toolbar_index]
bg = 'yellow'
button_id = Button(self.top_frame,text=text,background=bg)
button_id.grid(row=0, column=toolbar_index)
self.toolbar_buttons[toolbar_index] = button_id
def toolbar_button_handler(event, self=self, button=toolbar_index):
return self.service_toolbar(button)
# bind mouse click on start or stop to the toolbar_button_handler
button_id.bind("<Button-1>", toolbar_button_handler)
# call blink() if start and set stop when stop
def service_toolbar(self, toolbar_index):
if toolbar_index == 0:
self.stop = False
print self.stop
self.blink()
elif toolbar_index == 1:
self.stop = True
print self.stop
elif toolbar_index == 2:
self.stop = True
print self.stop
self.t=0
# while in start, check if stop is clicked, if not, call blink recursivly
def blink(self):
if not self.stop:
print 'looping',self.stop
self.label.configure(bg=colors[self.t])
self.t += 1
if self.t == numcol: # push stop button
self.service_toolbar(2)
self.label.update_idletasks()
self.after(500, self.blink)
if __name__ == '__main__':
SGWidget().mainloop()
然后,在 matplotlib 示例 embedding_in_tk.html 的帮助下,http://matplotlib.sourceforge.net/examples/user_interfaces/embedding_in_tk.html ,我操纵了前面的代码来为连接到 pcolor 图的 Canvas 设置动画。但是,使用 canvas.get_tk_widget() 更新 Canvas 并不能达到我假设的效果,因为它之前的命令会重新绘制 pcolor()。所以我猜我每次重新绘制时都必须重新连接 Canvas 和图形?但我不知道怎么办。我希望我什至在使用 update_idletasks() 的正确轨道上???
那么,对于下面的代码,当代码在 Play 中循环时,我看到的只是相同的情节,而不是更新的图形?这是我的主要问题。
from pylab import *
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from Tkinter import *
colors=[None]*10
for i in range(len(colors)):
colors[i]=rand(5,5)
#colors = ['red','green','blue','orange','brown','black','white','purple','violet']
numcol=len(colors)
class App(Frame):
def __init__(self,parent=None):
Frame.__init__(self,parent)
self.top=Frame()
self.top.grid()
self.top.update_idletasks()
self.makeWidgets()
self.makeToolbar()
def makeWidgets(self):
# figsize (w,h tuple in inches) dpi (dots per inch)
#f = Figure(figsize=(5,4), dpi=100)
self.f = Figure()
self.a = self.f.add_subplot(111)
self.a.pcolor(rand(5,5))
# a tk.DrawingArea
self.canvas = FigureCanvasTkAgg(self.f, master=self.top)
self.canvas.get_tk_widget().grid(row=3,column=0,columnspan=3)
self.bClose = Button(self.top, text='Close',command=self.top.destroy)
self.bClose.grid()
#self.label = Label(self.top, text = 'Text',bg='orange')
#self.label.grid()
# initialize (time index t)
self.t=0
def makeToolbar(self):
self.toolbar_text = ['Play','Pause','Stop']
self.toolbar_length = len(self.toolbar_text)
self.toolbar_buttons = [None] * self.toolbar_length
for toolbar_index in range(self.toolbar_length):
text = self.toolbar_text[toolbar_index]
bg = 'yellow'
button_id = Button(self.top,text=text,background=bg)
button_id.grid(row=0, column=toolbar_index)
self.toolbar_buttons[toolbar_index] = button_id
def toolbar_button_handler(event, self=self, button=toolbar_index):
return self.service_toolbar(button)
button_id.bind("<Button-1>", toolbar_button_handler)
# call blink() if start and set stop when stop
def service_toolbar(self, toolbar_index):
if toolbar_index == 0:
self.stop = False
print self.stop
self.blink()
elif toolbar_index == 1:
self.stop = True
print self.stop
elif toolbar_index == 2:
self.stop = True
print self.stop
self.t=0
# while in start, check if stop is clicked, if not, call blink recursivly
def blink(self):
if not self.stop:
print 'looping',self.stop
self.a.pcolor(colors[self.t])
#draw()
#self.label.configure(bg=colors[self.t])
self.t += 1
if self.t == numcol: # push stop button
self.service_toolbar(2)
self.canvas.get_tk_widget().update_idletasks()
#self.label.update_idletasks()
self.after(500, self.blink)
#root = Tk()
app=App()
app.mainloop()
感谢您的帮助!
最佳答案
在你的闪烁函数中,在调用空闲任务之前添加一个self.canvas.show()
:
self.canvas.show() # insert this line
self.canvas.get_tk_widget().update_idletasks()
关于python - 使用 Tkinter 和 pylab/matplotlib 嵌入 : can't update figure/canvas? 播放、暂停、停止的彩色绘图动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3294989/
我在 Window 2008 x64 上的 IIS 7 下托管了一个网站。 IIS 以 64 位模式运行,该站点有自己的 64 位应用程序池等。该网站大部分时间似乎运行良好,然后每小时突然卡住用户请求
我有一个 imageView 并希望它像这样工作: ImageViewer可见 5秒暂停 ImageView 不可见 5秒暂停 ImageViewer可见 等等... 我该怎么做?我试过 sleep
我在我的 JavaScript 函数中使用了下面的代码。我想在 10 秒后调用这个函数。然而该函数立即被触发!?!不确定发生了什么。 function testing() { //oth
我想暂停计时器,点击按钮后我想继续计时器计数...我搜索但找不到与此相关的功能.. 怎么办? 最佳答案 您将需要一个变量来跟踪自 Chronometer 启动以来耗时: long timeWhenSt
我目前有一个程序可以从麦克风收集声音信号并在 python 上实时显示波形。对于 matplotlib funcanimation,我正在尝试通过这种方式向我的程序添加一些暂停和启动按钮或功能。但它没
我有一个由套接字提供的热Observable。我可以使用pausable暂停套接字供稿。但是一旦“取消暂停”可观察对象,就需要显示套接字在暂停订阅时可能发送的最后一个值。我不想跟踪套接字手动发送的最后
我知道这是可能的,但我还没有找到方法,所以我在问。 在播放 3rd 方音乐(例如 Spotify)时开始在我的应用程序中播放 mp3 声音时。 Spotify 暂停,您必须恢复 Spotify,让它再
我正在尝试使用 iPhone 的前置摄像头录制有声视频。因为我还需要支持暂停/恢复功能,所以我需要使用 AVAssetWriter .我在网上找到了一个用 Objective-C 编写的示例,它几乎实
我知道互斥锁可以作为一种实现,但是我想知道是否有一种方法可以像视频播放一样暂停/恢复另一个线程。当其他正在运行的线程很复杂时,此方法更易于编程。 最佳答案 SIGTSTP是用于暂停进程的信号,如果您有
到目前为止,我已经看到了以下停止动画的技术,但我在这里寻找的是旋转 View 停止在当前的角度,而不是返回到 0。 struct DemoView: View { @State private
我一般在问有关多线程的问题。例如我锁定了一个互斥锁并恢复任务,然后我想挂起它,我的问题是,我应该在挂起之前解锁互斥锁吗?这样当我再次使用互斥锁恢复它时,它会成功恢复吗? 我刚刚开始使用多线程的东西,我
我有2个缩略图链接,单击它们时,它们会以灯箱样式打开视频。我的目标是让它们在打开时播放,在关闭时暂停(单击背景区域时关闭)。 我的HTML代码在这里: M
到目前为止,我没有将我发现的几种不同方法拼凑在一起: http://192.185.121.49/~steveobr/ 我需要所有的语音演示像第一个“商业”一样工作 正如您在实时示例中看到的那样,每个
所以我正在制作某种游戏,玩家可以在其中获得一些能力。玩家回合结束后,服务器应有 5 秒的超时时间,其中不执行任何代码,然后在该时间后结束回合。但是,如果客户端单击其中一项电源,服务器应停止 5 秒超时
我尝试将自己的方法添加到 Tween 类中以暂停/恢复所有补间。这就是我所拥有的: createjs.Tween.pauseAllTweens = function() { for ( var
我对 Azure 搜索标准级别的成本有疑问。是否可以将 Azure 搜索级别从标准更改为基本?是否可以暂时暂停 Azure 搜索标准?我在门户中没有看到此控件。我是否需要将 Azure 搜索实现重新创
如何用相同的代码制作play/Pause按钮。 - (IBAction)min:(id)sender { NSString *path = [[NSBundle mainBundle] pathF
我知道这很可能超出了沙箱范围,但我还是想问一下: 我想在我的应用程序中放置一个“暂停/播放”按钮,以暂停或播放任何背景音频。基本上,我希望实现在多任务栏中找到的播放/暂停按钮。 一个简单的例子是有人用
我正在制作一款编程游戏,玩家可以在其中对盟友的行为进行编程。玩家为给定的盟友编写decide()函数的主体,可以用任何java代码填写,但必须返回一个 Action 。我想为每个盟友提供一组有限的每个
我有功能 1 用于播放音乐,第二个用于设置实际音乐的暂停,我的暂停功能不起作用。我该如何设置暂停? function play(id){ var audio = new Audio('
我是一名优秀的程序员,十分优秀!