按'1'按钮后缩放停止工作,但仅在子图中

时间:2018-06-12 17:11:24

标签: python matplotlib

我正在开发一个简单的GUI来使用Matplotlib's own event handling分析一些数据。这一般来说效果很好,但是在过去的几个小时里,我一直在为一些奇怪的错误而烦恼。

下面的代码是我真实应用程序的严重删减版本。它的工作方式是,您可以通过单击鼠标左键和右键单击图像来添加和删除点。按“0”和“1”键可以打开和关闭这种“编辑模式”。

当图像是唯一的子图时,这可以正常工作。问题是,如果图像是多个子图中的一个,Matplotlib的缩放按钮会在您打开编辑模式后立即停止工作(通过按下'1'按钮,将on_click函数安装为button_press_event的处理程序)。在此之后,按“o”或缩放按钮可更改光标,但不再显示缩放区域的矩形。我猜这个处理程序在某种程度上与Matplotlib的内部构件混淆。

是否有人理解为什么缩放在单个子图中保持工作,但在多个子图的情况下安装on_click处理程序时停止工作?。在工作版和错误版之间进行更改注释/取消注释生成图形和子图的指示行。我使用的是来自anaconda的python 2.7.14和matplotlib 2.2.2。

import numpy as np
import matplotlib.pyplot as plt

class Points(object):
    def __init__(self, ax):
        self.ax = ax

        # make dummy plot, points will be added later
        self.dots, = ax.plot([], [], '.r')
        self.x = []
        self.y = []

    def onclick(self, event):
        print 'point.onclick'
        # only handle clicks in the relevant axis
        if event.inaxes is not self.ax:
            print 'outside axis'
            return

        # add point with left button
        if event.button == 1:
            self.x.append(event.xdata)
            self.y.append(event.ydata)

        # delete point with right button
        if event.button == 3 and len(self.x) > 0:
            imn = np.argmin((event.xdata - self.x)**2 + (event.ydata - self.y)**2)
            del self.x[imn]
            del self.y[imn]

        self.dots.set_data(self.x, self.y)
        plt.draw()

#### THIS WORKS ####
fig, ax3 = plt.subplots()
####################

#### THIS DOES NOT WORK ####
# fig, [[ax1, ax2], [ax3, ax4]] = plt.subplots(2, 2)
############################

ax3.imshow(np.random.randn(10, 10))
ax3.set_title('Press 0/1 to disable/enable editing points')

points = Points(ax3)

# initial state
cid_click = None
state = 0

def on_key(event):
    global cid_click, state
    print 'you pressed %r' % event.key

    if event.key in '01':
        if cid_click is not None:
            print 'disconnect cid_click', cid_click
            fig.canvas.mpl_disconnect(cid_click)
            cid_click = None

        state = int(event.key)
        if state:
            print 'connect'
            cid_click = fig.canvas.mpl_connect('button_press_event', points.onclick)

    # plt.draw()
    print 'state = %i, cid = %s' % (state, cid_click)

cid_key = fig.canvas.mpl_connect('key_press_event', on_key)

plt.show()

1 个答案:

答案 0 :(得分:1)

这是我到目前为止遇到的最奇怪的错误之一。问题与按 1 键有关。由于某些未知原因,这似乎会杀死其他事件的回调。我创建了一个bug report about it

目前,解决方案是不使用 1 键,例如 a / d 键(用于激活/取消激活)。

s.Countries.Any(c => c.Name.Contains(searchString))