python - RectangleSelector 在缩放时消失

标签 python python-2.7 matplotlib matplotlib-widget

当我运行 this示例并创建一个矩形选区,如果我缩放或移动选区周围的绘图窗口消失,直到我取消选择移动或缩放工具并再次单击绘图窗口。

我在 IPython 笔记本中使用 %matplotlib tkinter

我已经尝试了解缩放窗口时发生的限制变化并将矩形选区设置为可见:

def persist_rect(newlims):
    rs = toggle_selector.RS
    print(rs.visible)
    rs.set_visible(True)
    rs.update()

current_ax.callbacks.connect('xlim_changed', persist_rect)
current_ax.callbacks.connect('ylim_changed', persist_rect)

但这似乎并没有做任何事情。它甚至没有将 toggle_selector.RS.visible 设置为 false。

我也一直在查看 source for RectangleSelector ,但我还没有看到任何有启发性的东西。

我还发现,当我使用 RectangleSelector.extents = new_extents 修改所选区域的范围时,我也遇到了这个问题。当 .extents 被修改时,例如使用 slider 小部件,所选区域会消失,直到我再次单击绘图。

如果按照@ImportanceOfBeingErnest 的建议用useblit=False 初始化RectangleSelector,所有这些问题都会消失,但是,正如他们所说,这不是一个非常高效的解决方案.

最佳答案

draw_event 添加回调:

def mycallback(event):
    if RS.active:
        RS.update()
plt.connect('draw_event', mycallback)

使 RectangleSelector 在缩放或平移后保持不变,并与 useblit=True 兼容。


例如,使用 code from the docs作为基础:

from __future__ import print_function
from matplotlib.widgets import RectangleSelector
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.widgets as widgets
import threading
import datetime as DT

def line_select_callback(eclick, erelease):
    'eclick and erelease are the press and release events'
    x1, y1 = eclick.xdata, eclick.ydata
    x2, y2 = erelease.xdata, erelease.ydata
    print("(%3.2f, %3.2f) --> (%3.2f, %3.2f)" % (x1, y1, x2, y2))
    print(" The button you used were: %s %s" % (eclick.button, erelease.button))

def toggle_selector(event):
    print(' Key pressed: {}'.format(event.key))
    if event.key in ['D', 'd'] and RS.active:
        print(' RectangleSelector deactivated.')
        RS.set_active(False)
        RS.set_visible(False)
        RS.update()
    if event.key in ['A', 'a'] and not RS.active:
        print(' RectangleSelector activated.')
        RS.set_active(True)
        RS.set_visible(True)
        RS.update()

def mycallback(event):
    if RS.active:
        # print('mycallback')
        RS.update()

# def persist_rect(newlims):
#     print('persist_rect')
#     RS.set_visible(True)
#     RS.update()

fig, ax = plt.subplots() 
# figtype = type(fig)
# figtype._draw = figtype.draw
# def mydraw(self, renderer):
#     print('figure.draw')
#     self._draw(renderer)
# figtype.draw = mydraw

N = 100000               
x = np.linspace(0.0, 10.0, N) 

RS = RectangleSelector(ax, line_select_callback,
                       drawtype='box', useblit=True,
                       button=[1, 3],  # don't use middle button
                       minspanx=5, minspany=5,
                       spancoords='pixels',
                       interactive=True)

plt.plot(x, +np.sin(.2*np.pi*x), lw=3.5, c='b', alpha=.7) 
plt.plot(x, +np.cos(.2*np.pi*x), lw=3.5, c='r', alpha=.5)
plt.plot(x, -np.sin(.2*np.pi*x), lw=3.5, c='g', alpha=.3)

plt.connect('key_press_event', toggle_selector)
plt.connect('draw_event', mycallback)
# ax.callbacks.connect('xlim_changed', persist_rect)
# ax.callbacks.connect('ylim_changed', persist_rect)

plt.show()

为什么 mycallback 有效但 persist_rect 无效?

如果您取消注释上面注释掉的语句,您将得到一些打印输出,看起来像这样:

figure.draw
mycallback
figure.draw
mycallback
(4.09, -0.53) --> (8.15, 0.38)
 The button you used were: 1 1
persist_rect
persist_rect
figure.draw
mycallback
 Key pressed: q

注意 persist_rectfigure.draw 之前被调用,而 mycallback 在之后被调用。 figure.draw 不绘制 RectangleSelection,但绘制用于背景的 Rectangle。所以 figure.draw 遮盖了 RectangleSelection。 因此 persist_rect 会暂时显示 RectangleSelection,但它无法持久化。 mycallback 有效,因为它是在 figure.draw 之后调用的。

关于python - RectangleSelector 在缩放时消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45531164/

相关文章:

python - matplotlib 中 Matlab 的 surf(x,y,z,c) 的等价物是什么?

python - numpy 3d 数组 - 选择沿给定轴的最大元素

python - 如何使用 Odoo 中的 ORM 连接到 PostgreSQL 中的另一个不同数据库?

python - Pandas 0.14.1 StataReader - 阅读 .dta 文件

python - 无法引用在函数外声明的一个特定变量

python - 配置 matplotlib colorbar 以匹配 3D 表面值

python - 使用 pytest 运行单元测试时出错 - AttributeError : 'TestCaseFunction' object has no attribute 'get_marker'

python - Beautifulsoup 和 Panda - 帮助修改多页代码

python - 将数据从 MySQL 插入到 Postgresql

python - 模拟 Popen 根据 call_args 返回不同的结果