ops_nms | R Documentation |
Performs non-maximum suppression (NMS) on the boxes according to their intersection-over-union (IoU).
ops_nms(boxes, scores, iou_threshold)
boxes |
|
scores |
|
iou_threshold |
|
NMS iteratively removes lower scoring boxes which have an IoU greater than
iou_threshold
with another (higher scoring) box.
If multiple boxes have the exact same score and satisfy the IoU criterion with respect to a reference box, the selected box is not guaranteed to be the same between CPU and GPU. This is similar to the behavior of argsort in PyTorch when repeated values are present.
int64 tensor with the indices of the elements that have been kept by NMS, sorted in decreasing order of scores
if (torchvisionlib_is_installed()) {
ops_nms(torch::torch_rand(3, 4), torch::torch_rand(3), 0.5)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.