groupRectangles function

VecRect groupRectangles(
  1. VecRect rects,
  2. int groupThreshold,
  3. double eps
)

Implementation

VecRect groupRectangles(VecRect rects, int groupThreshold, double eps) {
  cvRun(() => cobjdetect.GroupRectangles(rects.ptr, groupThreshold, eps));
  rects.reattach();
  return rects;
}