将坐标集绘制为numpy数组可以通过以下步骤实现:
import numpy as np
from PIL import Image
width = 800 # 位图宽度
height = 600 # 位图高度
bitmap = np.zeros((height, width, 3), dtype=np.uint8)
coordinates = [(x1, y1), (x2, y2), ...] # 坐标集合
for coord in coordinates:
x, y = coord
if 0 <= x < width and 0 <= y < height:
bitmap[y, x] = [255, 255, 255] # 设置像素点颜色为白色
image = Image.fromarray(bitmap)
至此,坐标集已经成功绘制为numpy数组,并转换为PIL图像对象。你可以根据需要保存、显示或进一步处理该图像。
领取专属 10元无门槛券
手把手带您无忧上云