2 Star 0 Fork 0

QLHua001 / mmaction

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
compile.sh 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhaoyue-zephyrus 提交于 2019-05-23 22:24 . support ava fast rcnn
#!/bin/bash
PYTHON=${PYTHON:-"python"}
echo "Building package resample2d"
cd ./mmaction/ops/resample2d_package
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py install --user
echo "Building package trajectory_conv..."
cd ../trajectory_conv_package
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py install --user
echo "Building roi align op..."
cd ../roi_align
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
echo "Building roi pool op..."
cd ../roi_pool
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
echo "Building nms op..."
cd ../nms
if [ -d "build" ]; then
rm -r build
fi
$PYTHON setup.py build_ext --inplace
Python
1
https://gitee.com/QLHua001/mmaction.git
git@gitee.com:QLHua001/mmaction.git
QLHua001
mmaction
mmaction
master

搜索帮助