nms function
Implementation
VARP nms(
VARP boxes,
VARP scores,
int maxDetections, {
double iouThreshold = -1.0,
double scoreThreshold = -1.0,
}) => VARP.fromPointer(C.mnn_expr_Nms(boxes.ptr, scores.ptr, maxDetections, iouThreshold, scoreThreshold));