确定matplotlib中单击按钮的按钮

时间:2014-07-30 22:11:13

标签: python matplotlib

给定一个包含多个图的图形,有没有办法确定用鼠标按钮点击了哪一个?

E.g。

fig = plt.figure()

ax  = fig.add_subplot(121)
ax.imshow(imsp0)

ax = fig.add_subplot(122)
ax.imshow(imsp1)

fig.canvas.mpl_connect("button_press_event",onclick_select)

def onclick_select(event):
  ... do something depending on the clicked subplot

2 个答案:

答案 0 :(得分:2)

至少可以采用以下步骤:

  • onclick事件的属性xy带有图中角落的像素坐标

  • 可以使用fig.transFigure.inverted().transform((x,y))

  • 将这些坐标转换为图形坐标
  • 您可以按bb=ax.get_position()

  • 获取每个子图的边界框
  • 遍历图像的所有子图(轴)

  • 您可以bb.contains(fx,fy)测试点击是否在此边界框的区域内,其中fxfy是按钮点击坐标转换为图像位置

有关onclick事件的详细信息:http://matplotlib.org/users/event_handling.html 有关坐标转换的更多信息:http://matplotlib.org/users/transforms_tutorial.html

答案 1 :(得分:2)

如果您保留两个轴的手柄,您可以只查询发生咔嗒声的轴;例如if event.inaxes == ax:

import matplotlib.pyplot as plt
import numpy as np

imsp0 = np.random.rand(10,10)
imsp1 = np.random.rand(10,10)

fig = plt.figure()

ax  = fig.add_subplot(121)
ax.imshow(imsp0)

ax2 = fig.add_subplot(122)
ax2.imshow(imsp1)

def onclick_select(event):
    if event.inaxes == ax:
        print ("event in ax")
    elif event.inaxes == ax2:
        print ("event in ax2")

fig.canvas.mpl_connect("button_press_event",onclick_select)

plt.show()