套索(Lasso)是與套索選區(qū)(LassoSelector)相似的matplotlib部件(widgets),兩者的區(qū)別主要在于:
繼承關(guān)系:
構(gòu)造參數(shù):
事件處理:
Lasso類構(gòu)造函數(shù)的參數(shù)為:
套索可以使用matplotlib.path.Path類的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類的onpress方法和callback方法。由于Lasso類在事件處理上比較原始,需要用戶進(jìn)行控制,在鼠標(biāo)按下、釋放事件中需要使用canvas.widgetlock對(duì)象鎖定/解鎖繪圖功能,保證只有一個(gè)對(duì)象進(jìn)行繪圖,canvas.widgetlock是matplotlib.widgets.LockDraw類的實(shí)例。
盡量使用套索選區(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)文章希望大家以后多多支持腳本之家!
標(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)。