如何在 Matplotlib 中在 jpg 图像顶部直接叠加散点图?
要直接在 jpg 图像顶部叠加散点图,我们可以执行以下步骤 −
使用 imread() 方法加载图像“bird.jpg”,将图像从文件中读入数组中。
现在将数据显示为图像。
要在图像上绘制散点,请为 x_points 和 y_points 创建列表。
为 x 和 y 生成随机数并追加到列表中。
使用 scatter 方法绘制 x 和 y 点。
要显示图形,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True data = plt.imread("logo2.jpg") im = plt.imshow(data) x_points = [] y_points = [] for i in range(10): x_points.append(np.random.randint(0, 700)) y_points.append(np.random.randint(0, 700)) plt.scatter(x_points, y_points, c=x_points) plt.show()
输出
广告