gavinyuan
add: PIPNet, arcface
b9be4e6
raw
history blame contribute delete
No virus
460 Bytes
# --------------------------------------------------------
# Fast R-CNN
# Copyright (c) 2015 Microsoft
# Licensed under The MIT License [see LICENSE for details]
# Written by Ross Girshick
# --------------------------------------------------------
from .nms.cpu_nms import cpu_nms, cpu_soft_nms
def nms(dets, thresh):
"""Dispatch to either CPU or GPU NMS implementations."""
if dets.shape[0] == 0:
return []
return cpu_nms(dets, thresh)