batched_nms | R Documentation |
Performs non-maximum suppression in a batched fashion. Each index value correspond to a category, and NMS will not be applied between elements of different categories.
batched_nms(boxes, scores, idxs, iou_threshold)
boxes |
(Tensor[N, 4]): boxes where NMS will be performed. They are expected to be
in
|
scores |
(Tensor[N]): scores for each one of the boxes |
idxs |
(Tensor[N]): indices of the categories for each one of the boxes. |
iou_threshold |
(float): discards all overlapping boxes with IoU > |
keep (Tensor): int64 tensor with the indices of the elements that have been kept by NMS, sorted in decreasing order of scores
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.