给定一个包含多个图的图形,有没有办法确定用鼠标按钮点击了哪一个?
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
答案 0 :(得分:2)
至少可以采用以下步骤:
onclick事件的属性x
和y
带有图中角落的像素坐标
可以使用fig.transFigure.inverted().transform((x,y))
您可以按bb=ax.get_position()
遍历图像的所有子图(轴)
您可以bb.contains(fx,fy)
测试点击是否在此边界框的区域内,其中fx
和fy
是按钮点击坐标转换为图像位置
有关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()