Python使用matplotlib.pyplot as plt绘图图层优先级问题

作者:Ezekiel?Mok 时间:2022-06-10 18:00:37 

前言:

在最近做多智能车的控制时,绘制障碍物的时候发现障碍物的图层被路面图层所覆盖,一时不知道怎么解决,其实在用matplotlib.pyplot 绘图的时候可以使用参数zorder设置优先级进行调节,zorder整数越大,显示时越靠上。

调整前:

ax.hlines(y=30, xmin=-50, xmax=200, color='gray', linewidth=50)
ax.hlines(y=0, xmin=-50, xmax=200, color='gray', linewidth=50)
ax.hlines(y=-30, xmin=-50, xmax=200, color='gray', linewidth=50)
obstacle = plt.Circle((120.0, -5.0), 5.0, color='red', fill=True, linewidth=1)
obstacle1 = plt.Circle((60.0, 27.0), 5.0, color='red', fill=True, linewidth=1)
obstacle2 = plt.Circle((60.0, -29.0), 5.0, color='red', fill=True, linewidth=1)

Python使用matplotlib.pyplot as plt绘图图层优先级问题

调整后: 

ax.hlines(y=30, xmin=-50, xmax=200, color='gray', linewidth=50,  zorder=1)
ax.hlines(y=0, xmin=-50, xmax=200, color='gray', linewidth=50,  zorder=1)
ax.hlines(y=-30, xmin=-50, xmax=200, color='gray', linewidth=50,  zorder=1)
obstacle = plt.Circle((120.0, -5.0), 5.0, color='red', fill=True, linewidth=1,  zorder=2)
obstacle1 = plt.Circle((60.0, 27.0), 5.0, color='red', fill=True, linewidth=1,  zorder=2)
obstacle2 = plt.Circle((60.0, -29.0), 5.0, color='red', fill=True, linewidth=1,  zorder=2)

Python使用matplotlib.pyplot as plt绘图图层优先级问题

来源:https://blog.csdn.net/Ezekiel_Mok/article/details/124108306

标签:Python,matplotlib.pyplot,as,plt,绘图,图层,优先级
0
投稿

猜你喜欢

  • mysql5.7版本root密码登录问题的解决方法

    2024-01-21 00:47:43
  • PyQt5使用mimeData实现拖拽事件教程示例解析下

    2021-02-15 11:09:03
  • keras之权重初始化方式

    2023-06-01 19:04:44
  • Python获取网页上图片下载地址的方法

    2021-01-22 13:15:26
  • js链表操作(实例讲解)

    2024-04-17 10:37:33
  • python数据预处理 :样本分布不均的解决(过采样和欠采样)

    2023-08-10 07:03:14
  • python+selenium开发环境搭建图文教程

    2022-10-17 13:04:05
  • Python WEB应用部署的实现方法

    2022-02-18 07:34:35
  • requests.gPython 用requests.get获取网页内容为空 ’ ’问题

    2021-12-06 08:52:31
  • MySQL8重置root账户密码图文教程超详细讲解

    2024-01-25 17:40:55
  • sqlserver 数据库连接字符串中的可选项收集

    2024-01-16 17:47:31
  • Django实现支付宝付款和微信支付的示例代码

    2021-01-31 10:16:29
  • Python参数解析模块sys、getopt、argparse使用与对比分析

    2021-12-19 17:39:58
  • Python操作CSV格式文件的方法大全

    2023-07-08 18:57:45
  • python统计文本文件内单词数量的方法

    2021-09-20 17:51:55
  • 订单转化率之回访确认

    2009-08-24 12:40:00
  • python连接、操作mongodb数据库的方法实例详解

    2024-01-12 13:44:40
  • 解决Vue axios post请求,后台获取不到数据的问题方法

    2024-05-09 09:38:38
  • 详解Python中的Array模块

    2021-11-14 02:14:27
  • js从Cookies里面取值的简单实现

    2024-06-21 22:22:03
  • asp之家 网络编程 m.aspxhome.com