convexHull function

VecI32 convexHull(
  1. VARP points, {
  2. bool clockwise = false,
  3. bool returnPoints = true,
})

Implementation

VecI32 convexHull(VARP points, {bool clockwise = false, bool returnPoints = true}) {
  final pOut = c.mnn_cv_convexHull(points.ptr, clockwise, returnPoints);
  final rval = VecI32.fromPointer(pOut);
  return rval;
}