溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

matplotlib部件之矩形選區(qū)(RectangleSelector)的實(shí)現(xiàn)方法

發(fā)布時(shí)間:2021-02-02 09:49:10 來源:億速云 閱讀:316 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下matplotlib部件之矩形選區(qū)(RectangleSelector)的實(shí)現(xiàn)方法,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

矩形選區(qū)概述

矩形選區(qū)是一種常見的對(duì)象選擇方式,這個(gè)名詞最常見于Photoshop中,用于在一個(gè)子圖選擇鼠標(biāo)拖動(dòng)的矩形區(qū)域中的元素,在matplotlib中的矩形選區(qū)屬于部件(widgets),matplotlib中的部件都是中性(neutral )的,即與具體后端實(shí)現(xiàn)無關(guān)。

矩形選區(qū)具體實(shí)現(xiàn)定義為matplotlib.widgets.RectangleSelector類,繼承關(guān)系為:Widget->AxesWidget->_SelectorWidget->RectangleSelector。

RectangleSelector類的簽名為class matplotlib.widgets.RectangleSelector(ax, onselect, drawtype='box', minspanx=0, minspany=0, useblit=False, lineprops=None, rectprops=None, spancoords='data', button=None, maxdist=10, marker_props=None, interactive=False, state_modifier_keys=None)

RectangleSelector類構(gòu)造函數(shù)的參數(shù)為:

  • ax:矩形選區(qū)生效的子圖,類型為matplotlib.axes.Axes的實(shí)例。

  • onselect:矩形選區(qū)完成后執(zhí)行的回調(diào)函數(shù),函數(shù)簽名為def onselect(eclick: MouseEvent, erelease: MouseEvent),eclick和erelease分別為開始和結(jié)束選區(qū)時(shí)的鼠標(biāo)事件。

  • drawtype:矩形選區(qū)的外觀,取值范圍為{"box", "line", "none"},"box"為矩形框,"line"為矩形選區(qū)對(duì)角線,"none"無外觀,類型為字符串,默認(rèn)值為"box"。

  • lineprops:當(dāng)drawtype == "line"時(shí)線條的屬性,默認(rèn)值為dict(color="black", line, linewidth=2, alpha=0.5)。

  • rectprops:當(dāng)drawtype == "box"時(shí)矩形框的屬性,默認(rèn)值為dict(facecolor="red", edgecolor="black", alpha=0.2, fill=True)。

  • button:設(shè)置可用于觸發(fā)矩形選區(qū)的鼠標(biāo)鍵,MouseButton列表,默認(rèn)為所有鼠標(biāo)鍵。

  • interactive:是否允許交互,布爾值,默認(rèn)為False,即選擇完成后選區(qū)即消失,值為True時(shí),選區(qū)選擇完成后不消失,除非按快捷鍵解除。

  • state_modifier_keys:快捷鍵設(shè)置,類型為字典。

    • “move”: 移動(dòng)已存在的選區(qū),默認(rèn)沒有修飾鍵。

    • “clear”:清除現(xiàn)有選區(qū),默認(rèn)為 "escape",即esc鍵。

    • “square”:正方形選區(qū),默認(rèn)為"shift"。

    • “center”:以當(dāng)前點(diǎn)作為選區(qū)的中心點(diǎn),默認(rèn)為 "ctrl"。

    • “square” 和 “center” 可以組合使用。

案例

官方案例,https://matplotlib.org/gallery/widgets/rectangle_selector.html

案例說明

拖動(dòng)鼠標(biāo)畫出矩形選區(qū),默認(rèn)為交互模式,顯示選區(qū)框,按esc鍵取消選區(qū),控制臺(tái)顯示選區(qū)的坐標(biāo)和使用的鼠標(biāo)鍵。按t鍵切換矩形選區(qū)功能的激活狀態(tài),非激活狀態(tài)矩形選區(qū)功能不生效。

matplotlib部件之矩形選區(qū)(RectangleSelector)的實(shí)現(xiàn)方法

控制臺(tái)輸出:

(0.74, -0.38) --> (8.90, 0.75)
 The buttons you used were: 1 1

代碼分析

from matplotlib.widgets import RectangleSelector
import numpy as np
import matplotlib.pyplot as plt

# 矩形選區(qū)選擇時(shí)的回調(diào)函數(shù)
def line_select_callback(eclick, erelease):
  """
  Callback for line selection.

  *eclick* and *erelease* are the press and release events.
  """
  x1, y1 = eclick.xdata, eclick.ydata
  x2, y2 = erelease.xdata, erelease.ydata
  print(f"({x1:3.2f}, {y1:3.2f}) --> ({x2:3.2f}, {y2:3.2f})")
  print(f" The buttons you used were: {eclick.button} {erelease.button}")

# 激活狀態(tài)快捷鍵回調(diào)函數(shù),active屬性和set_active方法繼承自_SelectorWidget類
def toggle_selector(event):
  print(' Key pressed.')
  if event.key == 't':
    if RS.active:
      print(' RectangleSelector deactivated.')
      RS.set_active(False)
    else:
      print(' RectangleSelector activated.')
      RS.set_active(True)

# 繪圖
fig, ax = plt.subplots()
N = 100000 # If N is large one can see improvement by using blitting.
x = np.linspace(0, 10, N)

ax.plot(x, np.sin(2*np.pi*x)) # plot something
ax.set_title(
  "Click and drag to draw a rectangle.\n"
  "Press 't' to toggle the selector on and off.")

# 構(gòu)造矩形選區(qū)實(shí)例,選取外觀為矩形框,鼠標(biāo)鍵為左鍵右鍵有效,允許保留選區(qū)
# drawtype is 'box' or 'line' or 'none'
RS = RectangleSelector(ax, line_select_callback,
                    drawtype='box', useblit=True,
                    button=[1, 3], # disable middle button
                    minspanx=5, minspany=5,
                    spancoords='pixels',
                    interactive=True)
# 綁定鍵盤事件,實(shí)現(xiàn)切換矩形選區(qū)激活狀態(tài)功能
fig.canvas.mpl_connect('key_press_event', toggle_selector)
plt.show()

看完了這篇文章,相信你對(duì)“matplotlib部件之矩形選區(qū)(RectangleSelector)的實(shí)現(xiàn)方法”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI