groupRectanglesAsync function

Future<VecRect> groupRectanglesAsync(
  1. VecRect rects,
  2. int groupThreshold,
  3. double eps
)

Implementation

Future<VecRect> groupRectanglesAsync(VecRect rects, int groupThreshold, double eps) async {
  return cvRunAsync0(
    (callback) => cobjdetect.cv_groupRectangles(rects.ptr, groupThreshold, eps, callback),
    (c) {
      rects.reattach();
      return c.complete(rects);
    },
  );
}