怎样缩小图片的部分区域并在 Matplotlib 中插入到同一张图中?


若要放大图片的一部分并插入到同一张图中,我们可以按如下步骤操作:

  • 使用 numpy 创建 x 和 y 点。

  • 若要放大图片的一部分,我们可以在那个范围内制作 x 和 y 点的数据。

  • 使用 plot() 方法、设置 lw=2、颜色为红色和标签,绘制 x 和 y 点(第 1 步)。

  • 使用 legend() 方法,为图像放置文本,主曲线。

  • 通过放置矩形的坐标,使用 axes() 方法创建轴线。

  • 使用 plot() 方法、设置 lw=1、颜色为绿色标签,绘制 x 和 y 点(第 2 步),即图像的一部分。

  • 使用 legend() 方法,为图像放置文本,放大后的曲线。

  • 使用 show() 方法,显示图像。

示例

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.linspace(-5, 5, 1000)
y = np.sin(x)
x_zoom = np.linspace(-1, 1, 50)
y_zoom = np.sin(x_zoom)
plt.plot(x, y, c='red', lw=2, label="Main curve")
plt.legend()
axes = plt.axes([.30, .6, .20, .15])
axes.plot(x_zoom, y_zoom, c='green', lw=1, label="Zoomed curve")
axes.legend()
plt.show()

输出

更新于: 09-04-2021

4 千次 + 浏览量

开启您的职业

完成课程以取得认证

开始
广告