Package georegression.fitting.polygon
Interface FitConvexHull_F64
- All Known Implementing Classes:
ConvexHullAndrewMonotone_F64
,ConvexHullGrahamScan_F64
public interface FitConvexHull_F64
Interface for Convex Hull algorithms.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
process
(FastAccess<Point2D_F64> points, Polygon2D_F64 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.
-