Algorithm behind delaunay tringulation
There are several algorithms to perform Delaunay triangulation. But we normally use subdiv2d.getTriangleList()
method to derive Delaunay translation on given vertices. What is the algorithm OpenCV used to construct this Delaunay triangulation?
there is no algorithm "behind" delaunay triangulation and
getTriangleList()
returns vertices, but does not "derive" anything.@berak OK. Anyhow when we call the getTrinagleList() It will return set of triangles. So there should be a mechanism (Algorithm) to make those triangles from the given points to subdiv2d. At least there should be an algorithm to connect the vertices that form a triangulation with Delaunay triangulation conditions.
that happens in the insert() step, no ?