濮阳杆衣贸易有限公司

主頁(yè) > 知識(shí)庫(kù) > matplotlib部件之套索Lasso的使用

matplotlib部件之套索Lasso的使用

熱門(mén)標(biāo)簽:400電話辦理費(fèi)用收費(fèi) 深圳網(wǎng)絡(luò)外呼系統(tǒng)代理商 鎮(zhèn)江人工外呼系統(tǒng)供應(yīng)商 高德地圖標(biāo)注字母 外呼系統(tǒng)前面有錄音播放嗎 柳州正規(guī)電銷(xiāo)機(jī)器人收費(fèi) 申請(qǐng)辦個(gè)400電話號(hào)碼 千呼ai電話機(jī)器人免費(fèi) 騰訊地圖標(biāo)注有什么版本

套索概述

套索(Lasso)是與套索選區(qū)(LassoSelector)相似的matplotlib部件(widgets),兩者的區(qū)別主要在于:

繼承關(guān)系:

  • 套索具體實(shí)現(xiàn)定義為matplotlib.widgets.Lasso類(lèi),繼承關(guān)系為:Widget->AxesWidget->Lasso。
  • 套索選區(qū)具體實(shí)現(xiàn)定義為matplotlib.widgets.LassoSelector類(lèi),繼承關(guān)系為:Widget->AxesWidget->_SelectorWidget->LassoSelector。

構(gòu)造參數(shù):

  • Lasso類(lèi)的簽名為class matplotlib.widgets.Lasso(ax, xy, callback=None, useblit=True),Lasso類(lèi)需要給定套索一個(gè)起始的坐標(biāo)。
  • LassoSelector類(lèi)的簽名為class matplotlib.widgets.LassoSelector(ax, onselect=None, useblit=True, lineprops=None, button=None)。

事件處理:

  • Lasso事件在鼠標(biāo)釋放時(shí)即被銷(xiāo)毀。
  • LassoSelector在鼠標(biāo)釋放時(shí)仍然可以繼續(xù)與子圖交互,直到斷開(kāi)與子圖的連接。

Lasso類(lèi)構(gòu)造函數(shù)的參數(shù)為:

  • ax:套索生效的子圖,類(lèi)型為matplotlib.axes.Axes的實(shí)例。
  • xy:套索起始的坐標(biāo)。
  • callback:套索完成即鼠標(biāo)釋放時(shí)執(zhí)行的回調(diào)函數(shù),函數(shù)簽名為def func(verts),verts的為套索端點(diǎn)的坐標(biāo)列表。

套索可以使用matplotlib.path.Path類(lèi)的contains_point方法獲取選區(qū)內(nèi)的數(shù)據(jù)點(diǎn)。
貌似 Lasso是實(shí)驗(yàn)性API,還不夠完善,matplotlib 3.3之后可能逐步廢棄 Lasso。

案例: 

官方案例,https://matplotlib.org/3.2.1/gallery/event_handling/lasso_demo.html

案例說(shuō)明

案例代碼

from matplotlib import colors as mcolors, path
from matplotlib.collections import RegularPolyCollection
import matplotlib.pyplot as plt
from matplotlib.widgets import Lasso
import numpy as np


class Datum:
  colorin = mcolors.to_rgba("red")
  colorout = mcolors.to_rgba("blue")

  def __init__(self, x, y, include=False):
    self.x = x
    self.y = y
    if include:
      self.color = self.colorin
    else:
      self.color = self.colorout


class LassoManager:
  def __init__(self, ax, data):
    self.axes = ax
    self.canvas = ax.figure.canvas
    self.data = data

    self.Nxy = len(data)

    facecolors = [d.color for d in data]
    self.xys = [(d.x, d.y) for d in data]
    self.collection = RegularPolyCollection(
      6, sizes=(100,),
      facecolors=facecolors,
      offsets=self.xys,
      transOffset=ax.transData)

    ax.add_collection(self.collection)

    self.cid = self.canvas.mpl_connect('button_press_event', self.onpress)

  def callback(self, verts):
    facecolors = self.collection.get_facecolors()
    p = path.Path(verts)
    ind = p.contains_points(self.xys)
    for i in range(len(self.xys)):
      if ind[i]:
        facecolors[i] = Datum.colorin
      else:
        facecolors[i] = Datum.colorout

    self.canvas.draw_idle()
    self.canvas.widgetlock.release(self.lasso)
    del self.lasso

  def onpress(self, event):
    if self.canvas.widgetlock.locked():
      return
    if event.inaxes is None:
      return
    self.lasso = Lasso(event.inaxes,
              (event.xdata, event.ydata),
              self.callback)
    # acquire a lock on the widget drawing
    self.canvas.widgetlock(self.lasso)


if __name__ == '__main__':

  np.random.seed(19680801)

  data = [Datum(*xy) for xy in np.random.rand(100, 2)]
  ax = plt.axes(xlim=(0, 1), ylim=(0, 1), autoscale_on=False)
  ax.set_title('Lasso points using left mouse button')

  lman = LassoManager(ax, data)

  plt.show()

代碼分析

案例的關(guān)鍵代碼在于LassoManager類(lèi)的onpress方法和callback方法。由于Lasso類(lèi)在事件處理上比較原始,需要用戶進(jìn)行控制,在鼠標(biāo)按下、釋放事件中需要使用canvas.widgetlock對(duì)象鎖定/解鎖繪圖功能,保證只有一個(gè)對(duì)象進(jìn)行繪圖,canvas.widgetlock是matplotlib.widgets.LockDraw類(lèi)的實(shí)例。

總結(jié)

盡量使用套索選區(qū)(LassoSelector)而不是套索(Lasso),兩者功能相似,索選區(qū)(LassoSelector)使用相對(duì)更簡(jiǎn)單一些,套索(Lasso)還有一些BUG,matplotlib 3.3已不再推薦使用。

到此這篇關(guān)于matplotlib部件之套索Lasso的使用的文章就介紹到這了,更多相關(guān)matplotlib 套索內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • matplotlib部件之矩形選區(qū)(RectangleSelector)的實(shí)現(xiàn)

標(biāo)簽:平頂山 郴州 海南 大慶 烏蘭察布 合肥 烏蘭察布 哈爾濱

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《matplotlib部件之套索Lasso的使用》,本文關(guān)鍵詞  matplotlib,部件,之,套索,Lasso,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《matplotlib部件之套索Lasso的使用》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于matplotlib部件之套索Lasso的使用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    宁陕县| 达拉特旗| 土默特右旗| 开化县| 桃园市| 娱乐| 贡觉县| 波密县| 遂宁市| 诏安县| 乐亭县| 即墨市| 留坝县| 江门市| 永昌县| 丽水市| 张家界市| 仪陇县| 彩票| 静乐县| 桦甸市| 广州市| 鄱阳县| 连州市| 金堂县| 拜城县| 田林县| 永平县| 团风县| 昆山市| 合川市| 北海市| 东光县| 腾冲县| 三河市| 宾阳县| 高台县| 蚌埠市| 岳池县| 江都市| 石狮市|