我有一个使用matplotlib画布的应用程序,它基本上包含一个imshow和一些艺术家对象(例如省略号)。图形画布受以下事件序列限制:
为了加快绘图速度,我必须使用blitting。当我运行事件序列时,选择要移动的椭圆将显示在画布的旧坐标和新坐标中。当我用canvas.draw()
替换blitting机器时,不会发生此问题。
你是否知道我对blitting做错了什么?
这是一个快速而又脏的代码片段,可以重现我的问题(ubuntu 12.04,python 2.7,matplotlib 1.1.1rc)。
import numpy
from pylab import figure, show
from matplotlib.patches import Ellipse
def on_pick_ellipse(event):
if event.mouseevent.button == 3:
ellipse = event.artist
ellipse.set_facecolor((1,0,0))
subplot.draw_artist(ellipse)
fig.canvas.blit(subplot.bbox)
return True
def on_move_ellipse(event):
global ellipse
if event.button == 3:
return
if ellipse is not None :
fig.canvas.restore_region(background)
newCenter = (event.xdata, event.ydata)
ellipse.center = newCenter
ellipse.set_facecolor((0,0,1))
subplot.draw_artist(ellipse)
fig.canvas.blit(subplot.bbox)
ellipse = None
return True
ellipse = None
data = numpy.random.uniform(0,1,(640,256))
fig = figure()
subplot = fig.add_subplot(111,aspect="equal")
subplot.imshow(data.T)
background = fig.canvas.copy_from_bbox(subplot.bbox)
ellipse = Ellipse(xy=(100,100), width=100, height=30, angle=30.0, picker=True)
ellipse.set_clip_box(subplot.bbox)
ellipse.set_alpha(0.7)
ellipse.set_facecolor((0,0,1))
subplot.add_artist(ellipse)
fig.canvas.mpl_connect("pick_event", on_pick_ellipse)
fig.canvas.mpl_connect("button_release_event", on_move_ellipse)
show()
非常感谢
Eric