[45a3e1]: / darkflow / cython_utils / nms.pxd

Download this file

10 lines (7 with data), 183 Bytes

1
2
3
4
5
6
7
8
9
import numpy as np
cimport numpy as np
cimport cython
ctypedef np.float_t DTYPE_t
from libc.math cimport exp
from utils.box import BoundBox
cdef NMS(float[:, ::1] , float[:, ::1] )