在照片上打印voronoi图

时间:2019-12-01 09:47:33

标签: voronoi

我正在尝试在带有这些点的图片上创建voronoi线。我已经提取了点(x,y),但是我想将它们绘制在从中获取的图像上。

myFunction(direction)
{
   switch direction
   {
      case "left": MsgBox "LEFT"      
      case "right": MsgBox "RIGHT"      
   }
   return
}

The code generates this image 当我尝试将图形尺寸更改为图像尺寸时,出现此错误:

points = [[point[0] * (img.shape[0]) / max_x, point[1] * (img.shape[1]) / max_y] for point in original_pints]
vor = Voronoi(points)
fig = plt.figure(figsize=(20,20))
ax = fig.add_subplot(111)
ax.imshow(ndimage.rotate(img, 0))
voronoi_plot_2d(vor , show_points=False, show_vertices=False, line_colors='red', ax=ax)
plt.show()

我该怎么做才能使图像合适?

0 个答案:

没有答案