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+pyqt实现右下角弹出框
Oct 26 Python
python2.7+selenium2实现淘宝滑块自动认证功能
Feb 24 Python
用TensorFlow实现多类支持向量机的示例代码
Apr 28 Python
django orm 通过related_name反向查询的方法
Dec 15 Python
Python爬虫设置代理IP(图文)
Dec 23 Python
Python3从零开始搭建一个语音对话机器人的实现
Aug 23 Python
Python传递参数的多种方式(小结)
Sep 18 Python
如何使用python进行pdf文件分割
Nov 11 Python
python实现12306登录并保存cookie的方法示例
Dec 17 Python
Python字典深浅拷贝与循环方式方法详解
Feb 09 Python
python-xpath获取html文档的部分内容
Mar 06 Python
Python Selenium异常处理的实例分析
Feb 28 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
Ajax+PHP 边学边练之四 表单
2009/11/27 PHP
利用Laravel生成Gravatar头像地址的优雅方法
2017/12/30 PHP
laravel-admin 在列表页添加自定义按钮的例子
2019/09/30 PHP
一些主流JS框架中DOMReady事件的实现小结
2011/02/12 Javascript
js日期对象兼容性的处理方法
2014/01/28 Javascript
window.open()详解及浏览器兼容性问题示例探讨
2014/05/29 Javascript
JavaScript三元运算符的多种使用技巧
2015/04/16 Javascript
vue使用stompjs实现mqtt消息推送通知
2017/06/22 Javascript
js单页hash路由原理与应用实战详解
2017/08/14 Javascript
vue.js与element-ui实现菜单树形结构的解决方法
2018/04/21 Javascript
Koa2微信公众号开发之本地开发调试环境搭建
2018/05/16 Javascript
element上传组件循环引用及简单时间倒计时的实现
2018/10/01 Javascript
webstorm+vue初始化项目的方法
2018/10/18 Javascript
vue+element使用动态加载路由方式实现三级菜单页面显示的操作
2020/08/04 Javascript
编写Python爬虫抓取暴走漫画上gif图片的实例分享
2016/04/20 Python
python遍历文件夹下所有excel文件
2018/01/03 Python
初探利用Python进行图文识别(OCR)
2019/02/26 Python
python基于json文件实现的gearman任务自动重启代码实例
2019/08/13 Python
将Pytorch模型从CPU转换成GPU的实现方法
2019/08/19 Python
Python图片的横坐标汉字实例
2019/12/04 Python
Python 线性回归分析以及评价指标详解
2020/04/02 Python
纯css3无js实现的Android Logo(有简单动画)
2013/01/21 HTML / CSS
html5 Canvas绘制线条 closePath()实例代码
2012/05/10 HTML / CSS
css 如何让背景图片拉伸填充避免重复显示
2013/07/11 HTML / CSS
介绍一下linux的文件权限
2014/07/20 面试题
中医专业应届生求职信
2013/11/17 职场文书
2014年教师培训的自我评价
2014/01/03 职场文书
质量月活动策划方案
2014/03/10 职场文书
经典广告词大全
2014/03/14 职场文书
售后服务承诺书范文
2014/03/26 职场文书
支部组织生活会方案
2014/06/10 职场文书
法人单位授权委托书范文
2014/10/06 职场文书
2015年全国爱眼日活动方案
2015/05/05 职场文书
《惊弓之鸟》教学反思
2016/02/20 职场文书
2016年优秀党员教师先进事迹材料
2016/02/29 职场文书
MYSQL中文乱码问题的解决方案
2022/06/14 MySQL