File size: 328 Bytes
901e379 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
WiderFace evaluation code
author: wondervictor
mail: [email protected]
copyright@wondervictor
"""
from distutils.core import setup, Extension
from Cython.Build import cythonize
import numpy
package = Extension('bbox', ['box_overlaps.pyx'], include_dirs=[numpy.get_include()])
setup(ext_modules=cythonize([package]))
|