matplotlib之多边形选区(PolygonSelector)的使用


Posted in Python onFebruary 24, 2021

多边形选区概述

多边形选区是一种常见的对象选择方式,在一个子图中,单击鼠标左键即构建一个多边形的端点,最后一个端点与第一个端点重合即完成多边形选区,选区即为多个端点构成的多边形。在matplotlib中的多边形选区属于部件(widgets),matplotlib中的部件都是中性(neutral )的,即与具体后端实现无关。

多边形选区具体实现定义为matplotlib.widgets.PolygonSelector类,继承关系为:Widget->AxesWidget->_SelectorWidget->PolygonSelector。

PolygonSelector类的签名为class matplotlib.widgets.PolygonSelector(ax, onselect, useblit=False, lineprops=None, markerprops=None, vertex_select_radius=15)

PolygonSelector类构造函数的参数为:

  • ax:多边形选区生效的子图,类型为matplotlib.axes.Axes的实例。
  • onselect:多边形选区完成后执行的回调函数,函数签名为def onselect( vertices),vertices数据类型为列表,列表元素格式为(xdata,ydata)元组。
  • drawtype:多边形选区的外观,取值范围为{"box", "line", "none"},"box"为多边形框,"line"为多边形选区对角线,"none"无外观,类型为字符串,默认值为"box"。
  • lineprops:多边形选区线条的属性,默认值为dict(color='k', linestyle='-', linewidth=2, alpha=0.5)。
  • markerprops:多边形选区端点的属性,默认值为dict(marker='o', markersize=7, mec='k', mfc='k', alpha=0.5)。
  • vertex_select_radius:多边形端点的选择半径,浮点数,默认值为15,用于端点选择或者多边形闭合。

PolygonSelector类中的state_modifier_keys公有变量 state_modifier_keys定义了操作快捷键,类型为字典。

  • “move_all”: 移动已存在的选区,默认为"shift"。
  • “clear”:清除现有选区,默认为 "escape",即esc键。
  • “move_vertex”:正方形选区,默认为"control"。

PolygonSelector类中的verts特性返回多边形选区中的多有端点,类型为列表,元素为(x,y)元组,即端点的坐标元组。

案例

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

案例说明

matplotlib之多边形选区(PolygonSelector)的使用

单击鼠标左键创建端点,最终点击初始端点闭合多边形,形成多边形选区。选区外的数据元素颜色变淡,选区内数据颜色保持不变。

按esc键取消选区。按shift键鼠标可以移动多边形选区位置,按ctrl键鼠标可以移动多边形选区某个端点的位置。退出程序时,控制台输出选区内数据元素的坐标。

控制台输出:

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])

到此这篇关于matplotlib之多边形选区(PolygonSelector)的使用的文章就介绍到这了,更多相关matplotlib 多边形选区内容请搜索三水点靠木以前的文章或继续浏览下面的相关文章希望大家以后多多支持三水点靠木!

Python 相关文章推荐
Python编程中实现迭代器的一些技巧小结
Jun 21 Python
Python简单定义与使用字典dict的方法示例
Jul 25 Python
对Python 多线程统计所有csv文件的行数方法详解
Feb 12 Python
python-pyinstaller、打包后获取路径的实例
Jun 10 Python
python3.4+pycharm 环境安装及使用方法
Jun 13 Python
Django实现基于类的分页功能
Oct 31 Python
python处理RSTP视频流过程解析
Jan 11 Python
如何基于python对接钉钉并获取access_token
Apr 21 Python
Python Tricks 使用 pywinrm 远程控制 Windows 主机的方法
Jul 21 Python
Python如何使用input函数获取输入
Aug 06 Python
python3.7.3版本和django2.2.3版本是否可以兼容
Sep 01 Python
用Python制作灯光秀短视频的思路详解
Apr 13 Python
matplotlib部件之套索Lasso的使用
Feb 24 #Python
matplotlib之属性组合包(cycler)的使用
Feb 24 #Python
matplotlib bar()实现百分比堆积柱状图
Feb 24 #Python
matplotlib bar()实现多组数据并列柱状图通用简便创建方法
Feb 24 #Python
pandas apply使用多列计算生成新的列实现示例
Feb 24 #Python
pandas map(),apply(),applymap()区别解析
Feb 24 #Python
Python的Tqdm模块实现进度条配置
Feb 24 #Python
You might like
PHP中实现图片的锐化
2006/10/09 PHP
使用YUI+Ant 实现JS CSS压缩
2014/09/02 PHP
php实现的简单检验登陆类
2015/06/18 PHP
PHP实现一个简单url路由功能实例
2016/11/05 PHP
CodeIgniter开发实现支付宝接口调用的方法示例
2016/11/14 PHP
PHP抽象类与接口的区别实例详解
2019/05/09 PHP
javascript jQuery插件练习
2008/12/24 Javascript
JQuery读取XML文件数据并显示的实现代码
2009/12/16 Javascript
动态加载script文件的两种方法
2013/08/15 Javascript
node.js中的path.basename方法使用说明
2014/12/09 Javascript
jQuery.holdReady()方法用法实例
2014/12/27 Javascript
jQuery操作属性和样式详解
2016/04/13 Javascript
JavaScript实现时间倒计时跳转(推荐)
2016/06/28 Javascript
Vue.js开发环境快速搭建教程
2017/03/17 Javascript
详解Vue2.x-directive的学习笔记
2017/07/17 Javascript
nodejs多版本管理总结
2018/04/03 NodeJs
微信小程序实践之动态控制组件的显示/隐藏功能
2018/07/18 Javascript
JavaScript实现表单注册、表单验证、运算符功能
2018/10/15 Javascript
jQuery选择器之基本过滤选择器用法实例分析
2019/02/19 jQuery
Element Tooltip 文字提示的使用示例
2020/07/26 Javascript
[03:00]2018完美盛典_最佳英雄奖
2018/12/17 DOTA
python 已知三条边求三角形的角度案例
2020/04/12 Python
使用Matplotlib绘制不同颜色的带箭头的线实例
2020/04/17 Python
PyTorch在Windows环境搭建的方法步骤
2020/05/12 Python
Tensorflow--取tensorf指定列的操作方式
2020/06/30 Python
新西兰珠宝品牌:Michael Hill
2017/09/16 全球购物
微软台湾官方网站:Microsoft台湾
2018/08/15 全球购物
普通话演讲稿
2014/09/03 职场文书
初中生旷课检讨书范文
2014/10/06 职场文书
公司奖励通知
2015/04/21 职场文书
2015年依法行政工作总结
2015/04/29 职场文书
预备党员介绍人意见
2015/06/01 职场文书
无犯罪记录证明样本
2015/06/16 职场文书
python 三边测量定位的实现代码
2021/04/22 Python
解决linux下redis数据库overcommit_memory问题
2022/02/24 Redis
Win11黑色桌面背景怎么办?Win11黑色壁纸解决方法汇总
2022/04/05 数码科技