mirror of
https://github.com/we0091234/Car_recognition.git
synced 2025-09-27 04:45:52 +08:00
14 lines
328 B
Python
14 lines
328 B
Python
"""
|
|
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]))
|