conda create -n openmmlab python=3.7
conda activate openmmlab
pip install torch==1.8.0+cu111 torchvision==0.9.0+cu111 -f https://download.pytorch.org/whl/torch_stable.html
这是官方推荐的方式,但是感觉不太好用,会出现版本对应不上的问题
pip install openmim
mim install mmcv-full #版本对应不上,不建议
所以我使用的方式为:
pip install mmcv-full -f http://download.openmmlab.com/mmcv/dist/cu111/toch1.8.0/index.html
注:这行代码里面的cu111/toch1.8.0需要改成自己服务器上对应的版本
git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
pip install -r requirements/build.txt
pip install -v -e .
cd mmdetection
mkdir checkpoints
(3)将上面下载的权重文件放在checkpoints文件夹里面
(4)
cpu上运行
python demo/image_demo.py demo/demo.jpg configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py checkpoints/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth --device cpu
gpu上运行
python demo/image_demo.py demo/demo.jpg configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py checkpoints/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth
参考链接:
https://github.com/open-mmlab/mmdetection/blob/master/docs/zh_cn/get_started.md