zhengrongzhang's picture
init model
ff1446e
raw
history blame
328 Bytes
"""
WiderFace evaluation code
author: wondervictor
mail: tianhengcheng@gmail.com
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]))