convex_hull_wrapper

grizli.utils.convex_hull_wrapper(x, y)[source]

Generate a convex hull from a list of points

Parameters
xarray-like

x-coordinates of the points.

yarray-like

y-coordinates of the points.

Returns
pxytuple

Tuple of hull vertices.

polyPolygon

Polygon object.

hullConvexHull

The hull object.