↧
Answer by olivaw for Computing the area of a convex hull in scipy
I suppose hull.area refers to the perimeter in 1D and to the area in 2D. If you want the area delimited by a 1D hull or the volume delimited by a 2D hull, call hull.volume instead.
View ArticleAnswer by Nick Martin for Computing the area of a convex hull in scipy
The definition of the Convex Hull is based upon the perimeter, not the area: In mathematics, the convex hull or convex envelope or convex closure of a set X of points in the Euclidean plane or in a...
View ArticleComputing the area of a convex hull in scipy
I wanted to compute the convex hull for a couple of points on a plane, using scipy. Here is my code: import numpy as np from scipy.spatial import ConvexHull points = np.array([[10, 10], [30, 10], [30,...
View Article