本篇文章為大家展示了使用matplotlib怎么實現(xiàn)一個多邊形選區(qū)功能,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
成都創(chuàng)新互聯(lián)科技有限公司專業(yè)互聯(lián)網(wǎng)基礎(chǔ)服務(wù)商,為您提供服務(wù)器托管,高防主機,成都IDC機房托管,成都主機托管等互聯(lián)網(wǎng)服務(wù)。多邊形選區(qū)是一種常見的對象選擇方式,在一個子圖中,單擊鼠標左鍵即構(gòu)建一個多邊形的端點,最后一個端點與第一個端點重合即完成多邊形選區(qū),選區(qū)即為多個端點構(gòu)成的多邊形。在matplotlib中的多邊形選區(qū)屬于部件(widgets),matplotlib中的部件都是中性(neutral )的,即與具體后端實現(xiàn)無關(guān)。
多邊形選區(qū)具體實現(xiàn)定義為matplotlib.widgets.PolygonSelector類,繼承關(guān)系為:Widget->AxesWidget->_SelectorWidget->PolygonSelector。
PolygonSelector類的簽名為class matplotlib.widgets.PolygonSelector(ax, onselect, useblit=False, lineprops=None, markerprops=None, vertex_select_radius=15)
PolygonSelector類構(gòu)造函數(shù)的參數(shù)為:
ax:多邊形選區(qū)生效的子圖,類型為matplotlib.axes.Axes的實例。
onselect:多邊形選區(qū)完成后執(zhí)行的回調(diào)函數(shù),函數(shù)簽名為def onselect( vertices),vertices數(shù)據(jù)類型為列表,列表元素格式為(xdata,ydata)元組。
drawtype:多邊形選區(qū)的外觀,取值范圍為{"box", "line", "none"},"box"為多邊形框,"line"為多邊形選區(qū)對角線,"none"無外觀,類型為字符串,默認值為"box"。
lineprops:多邊形選區(qū)線條的屬性,默認值為dict(color='k', linestyle='-', linewidth=2, alpha=0.5)。
markerprops:多邊形選區(qū)端點的屬性,默認值為dict(marker='o', markersize=7, mec='k', mfc='k', alpha=0.5)。
vertex_select_radius:多邊形端點的選擇半徑,浮點數(shù),默認值為15,用于端點選擇或者多邊形閉合。
PolygonSelector類中的state_modifier_keys公有變量 state_modifier_keys定義了操作快捷鍵,類型為字典。
“move_all”: 移動已存在的選區(qū),默認為"shift"。
“clear”:清除現(xiàn)有選區(qū),默認為 "escape",即esc鍵。
“move_vertex”:正方形選區(qū),默認為"control"。
PolygonSelector類中的verts特性返回多邊形選區(qū)中的多有端點,類型為列表,元素為(x,y)元組,即端點的坐標元組。
官方案例,https://matplotlib.org/gallery/widgets/polygon_selector_demo.html
單擊鼠標左鍵創(chuàng)建端點,最終點擊初始端點閉合多邊形,形成多邊形選區(qū)。選區(qū)外的數(shù)據(jù)元素顏色變淡,選區(qū)內(nèi)數(shù)據(jù)顏色保持不變。
按esc鍵取消選區(qū)。按shift鍵鼠標可以移動多邊形選區(qū)位置,按ctrl鍵鼠標可以移動多邊形選區(qū)某個端點的位置。退出程序時,控制臺輸出選區(qū)內(nèi)數(shù)據(jù)元素的坐標。
控制臺輸出:
Selected points:
[[2.0 2.0]
[1.0 3.0]
[2.0 3.0]]
import numpy as np from matplotlib.widgets import PolygonSelector from matplotlib.path import Path class SelectFromCollection: """ Select indices from a matplotlib collection using `PolygonSelector`. Selected indices are saved in the `ind` attribute. This tool fades out the points that are not part of the selection (i.e., reduces their alpha values). If your collection has alpha < 1, this tool will permanently alter the alpha values. Note that this tool selects collection objects based on their *origins* (i.e., `offsets`). Parameters ---------- ax : `~matplotlib.axes.Axes` Axes to interact with. collection : `matplotlib.collections.Collection` subclass Collection you want to select from. alpha_other : 0 <= float <= 1 To highlight a selection, this tool sets all selected points to an alpha value of 1 and non-selected points to *alpha_other*. """ def __init__(self, ax, collection, alpha_other=0.3): self.canvas = ax.figure.canvas self.collection = collection self.alpha_other = alpha_other self.xys = collection.get_offsets() self.Npts = len(self.xys) # Ensure that we have separate colors for each object self.fc = collection.get_facecolors() if len(self.fc) == 0: raise ValueError('Collection must have a facecolor') elif len(self.fc) == 1: self.fc = np.tile(self.fc, (self.Npts, 1)) self.poly = PolygonSelector(ax, self.onselect) self.ind = [] def onselect(self, verts): path = Path(verts) self.ind = np.nonzero(path.contains_points(self.xys))[0] self.fc[:, -1] = self.alpha_other self.fc[self.ind, -1] = 1 self.collection.set_facecolors(self.fc) self.canvas.draw_idle() def disconnect(self): self.poly.disconnect_events() self.fc[:, -1] = 1 self.collection.set_facecolors(self.fc) self.canvas.draw_idle() if __name__ == '__main__': import matplotlib.pyplot as plt fig, ax = plt.subplots() grid_size = 5 grid_x = np.tile(np.arange(grid_size), grid_size) grid_y = np.repeat(np.arange(grid_size), grid_size) pts = ax.scatter(grid_x, grid_y) selector = SelectFromCollection(ax, pts) print("Select points in the figure by enclosing them within a polygon.") print("Press the 'esc' key to start a new polygon.") print("Try holding the 'shift' key to move all of the vertices.") print("Try holding the 'ctrl' key to move a single vertex.") plt.show() selector.disconnect() # After figure is closed print the coordinates of the selected points print('\nSelected points:') print(selector.xys[selector.ind])
上述內(nèi)容就是使用matplotlib怎么實現(xiàn)一個多邊形選區(qū)功能,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)站欄目:使用matplotlib怎么實現(xiàn)一個多邊形選區(qū)功能-創(chuàng)新互聯(lián)
轉(zhuǎn)載注明:http://jinyejixie.com/article4/ggdie.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供商城網(wǎng)站、動態(tài)網(wǎng)站、品牌網(wǎng)站設(shè)計、網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計公司、移動網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)