OpenCV 使用 Delaunay 算法对平面进行三角剖分,该算法对应于 Voronoi 图的偶图。在下图中,Delaunay 三角剖分用黑线标记,Voronoi 图用红线标记。...初始化 - Delaunay
创建一个新的空Delaunay细分。...三角剖分
def draw_delaunay(img, subdiv, delaunay_color ) :
triangleList = subdiv.getTriangleList()..., 1)
cv2.line(img, pt2, pt3, delaunay_color, 1)
cv2.line(img, pt3, pt1, delaunay_color...(img_copy, subdiv, (255, 255, 255))
vv.PIS(img_copy)
# 绘制delaunay 三角剖分
draw_delaunay( img