I thought scipy.spatial.Delaunay.convex_hull is returning an array where every point/index is used twice, because one point belongs to two edges. But in my case there are several indices only one time:
hull = [[5053 6943]
[6219 5797]
[3441 5797]
[7547 1405]
[3441 6547]
[8144 9215]
[ 47 444]
[ 444 6219]
[6547 5053]
[9945 6943]
[2695 1405]]
For example the "47" is only used once. What does this mean (geometrically) ? How can one point of a convex hull only be used for one edge?
As mentioned in the comment above, you should use the newer
scipy.spatial.ConvexHull
. If you look at the indices of the vertices returned from this method in my IPython examples below, you will see that they are not normally redundant for 2D or 3D data sets.