groupRectangles function
Implementation
VecRect groupRectangles(VecRect rects, int groupThreshold, double eps) {
cvRun(() => cobjdetect.cv_groupRectangles(rects.ptr, groupThreshold, eps, ffi.nullptr));
rects.reattach();
return rects;
}
VecRect groupRectangles(VecRect rects, int groupThreshold, double eps) {
cvRun(() => cobjdetect.cv_groupRectangles(rects.ptr, groupThreshold, eps, ffi.nullptr));
rects.reattach();
return rects;
}