Package georegression.fitting.polygon
Interface FitConvexHull_F32
- All Known Implementing Classes:
ConvexHullAndrewMonotone_F32
,ConvexHullGrahamScan_F32
@Generated("georegression.fitting.polygon.FitConvexHull_F64")
public interface FitConvexHull_F32
Interface for Convex Hull algorithms.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(FastAccess<Point2D_F32> points, Polygon2D_F32 output) Fits a convex hull to the provided set of points.
-
Method Details
-
process
Fits a convex hull to the provided set of points.- Parameters:
points
- (Input, Output) Point that the convex hull is fit to. The list may have it's order changedoutput
- (Output) The found convex hull.
-