boundingRect function

Rect boundingRect(
  1. VARP points
)

Implementation

Rect boundingRect(VARP points) {
  final pOut = c.mnn_cv_boundingRect(points.ptr);
  final rval = Rect.fromPointer(pOut);
  return rval;
}