Fetch the repository succeeded.
This action will force synchronization from Gitee 极速下载/DensePose, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
# Copyright (c) Facebook, Inc. and its affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
##############################################################################
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from Cython.Build import cythonize
from setuptools import Extension
from setuptools import setup
import numpy as np
_NP_INCLUDE_DIRS = np.get_include()
# Extension modules
ext_modules = [
Extension(
name='detectron.utils.cython_bbox',
sources=[
'detectron/utils/cython_bbox.pyx'
],
extra_compile_args=[
'-Wno-cpp'
],
include_dirs=[
_NP_INCLUDE_DIRS
]
),
Extension(
name='detectron.utils.cython_nms',
sources=[
'detectron/utils/cython_nms.pyx'
],
extra_compile_args=[
'-Wno-cpp'
],
include_dirs=[
_NP_INCLUDE_DIRS
]
)
]
setup(
name='Detectron',
packages=['detectron'],
ext_modules=cythonize(ext_modules)
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。