使用python matplotlib.pyplot画矩形框
Posted yoyoyooo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用python matplotlib.pyplot画矩形框相关的知识,希望对你有一定的参考价值。
import matplotlib.patches as patches
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
# 画矩形框 currentAxis = plt.gca() # 获取当前子图 x_rect = x_index*Tr/480 y_rect = (y_index-fft_2pow_point/2)*fr/fft_2pow_point rect = patches.Rectangle((x_rect, y_rect), target_height*Tr/480, target_weight*fr/fft_2pow_point, linewidth=2, edgecolor=‘r‘, facecolor=‘none‘) currentAxis.add_patch(rect)
当前的图表和子图可以使用plt.gcf()和plt.gca()获得,
对于这四个参数,需要与已知的坐标轴坐标所对应,即已知我的横纵坐标为:
y_grid, x_grid = np.meshgrid(np.linspace(-fr / 2, fr / 2, width + 1),
np.linspace(0, Tr, 480 + 1, endpoint=False))
facecolor这个参数对应的为:设置矩形框内部的参数。
以上是关于使用python matplotlib.pyplot画矩形框的主要内容,如果未能解决你的问题,请参考以下文章
Python基础 -- Python环境的安装pip的使用终端运行python文件Pycharm的安装和使用Pycharm基本设置:设置Python文件默认格式