How can I calculate the eccentricity
of a 2D convex hull in Python?
Eccentricity: a parameter of an ellipse (or a closed shape) indicating its deviation from the circularity whose value ranging from 0 (circle) to 1 (line).
How can I calculate the eccentricity
of a 2D convex hull in Python?
Eccentricity: a parameter of an ellipse (or a closed shape) indicating its deviation from the circularity whose value ranging from 0 (circle) to 1 (line).
Copyright © 2021 Jogjafile Inc.
Well, for those who still would like to see an answer to this question: if we assume the closed shape is an ellipse or similar to an ellipse, the
eccentricity
is defined assqrt(square(major_axis_length/2)-square(minor_axis_length/2))
where the major and minor axis's are shown in the figure.The end points of the axis's are taken as min and max valued points along each axis. With 4 sample geo-points (these also could be Cartesian coordinates), we can write something like this:
Which yields
0.0854194406287