我想使用 matplotlib 和 pynput 近乎实时地绘制鼠标的移动,但我怀疑我遇到了一些代码被阻止的问题。代码使用此答案的简化版本。
import matplotlib.pyplot as plt
from pynput import mouse
from time import sleep
fig, ax = plt.subplots()
ax.set_xlim(0, 1920-1)
ax.set_ylim(0, 1080-1)
plt.show(False)
plt.draw()
x,y = [0,0]
points = ax.plot(x, y, 'o')[0]
# cache the background
background = fig.canvas.copy_from_bbox(ax.bbox)
def on_move(x, y):
points.set_data(x,y)
# restore background
fig.canvas.restore_region(background)
# redraw just the points
ax.draw_artist(points)
# fill in the axes rectangle
fig.canvas.blit(ax.bbox)
with mouse.Listener(on_move=on_move) as listener:
sleep(10)
代码似乎停止在ax.draw_artist(points)
. pynput 鼠标侦听器是 a threading.Thread
,所有回调都是从线程调用的。我对 matplotlib 或线程的内部工作原理不够熟悉,无法确定原因。