使用Matplotlib和NumPy在图像上绘制圆形
要在图像上使用matplotlib和numpy绘制圆形,我们可以按照以下步骤进行 –
- 设置图形大小并调整子图之间和周围填充。
-
从文件中读取图像并将其转换为数组。
-
使用numpy创建x和y数据点。
-
使用 subplots() 方法创建一个图和一组子图。
-
使用 imshow() 方法在2D常规光栅上将数据显示为图像。
-
关闭坐标轴。
-
在当前坐标轴上添加图案。
-
使用 show() 方法显示图形。
示例
import matplotlib.pyplot as plt
import numpy as np
from matplotlib.patches import Circle
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
img = plt.imread('bird.jpg')
x = np.random.rand(5) * img.shape[1]
y = np.random.rand(5) * img.shape[0]
fig, ax = plt.subplots(1)
ax.imshow(img)
ax.axis('off')
for xx, yy in zip(x, y):
circ = Circle((xx, yy), 50, color='red')
ax.add_patch(circ)
plt.show()