windows10搭建mmdetection

参考博文:

mmdetection在windows10系统环境中搭建

官方教程地址:https://mmdetection.readthedocs.io/en/latest/get_started.html

安装配置mmdetection 使用vs 可考虑

Windows跑通mmdetection

windows10下安装mmdetection

本文人win10系统 无gpu 没有独显 也就是连cuda都没有。

1、Create a conda virtual environment and activate it.

conda create -n open-mmlab python=3.7 -y
conda activate open-mmlab

2、Install PyTorch and torchvision following the official instructions, e.g.,

conda install pytorch torchvision -c pytorch
#我的没有cuda 和gpu 又安装了 CPU版的
conda install pytorch torchvision cpuonly -c pytorch

3、 MMCV | MMCV-full 的安装

参考官方博文:WINDOWS 下 MMCV | MMCV-full 的安装

我是没有新建虚拟环境,也没有Visual Studio Community 2019  直接在当前环境下安装,过程中有个环境变量“HOME”的问题,我设置环境变量HOME为当前用户目录“C:\Users\0”

git clone https://github.com/open-mmlab/mmcv.git
#git checkout v1.2.0 # based on target version 我这没有check
cd mmcv
pip install -r requirements.txt

#python setup.py build_ext # 如果成功, cl 将会自动弹出来编译 flow_warp
#python setup.py develop # 安装

#我直接这样
pip install -e .
pip list # 检查是否安装成功

4、安装mmdetection:

回到家目录

git clone https://github.com/open-mmlab/mmdetection.git
cd mmdetection
pip install -r requirements.txt

修改setup.py文件中extra_compile_args 相关代码,增加cxx的:"-DMS_WIN64","-MD"

def make_cuda_ext(name, module, sources, sources_cuda=[]):

    define_macros = []
    extra_compile_args = {'cxx': []}

    if torch.cuda.is_available() or os.getenv('FORCE_CUDA', '0') == '1':
        define_macros += [('WITH_CUDA', None)]
        extension = CUDAExtension
        extra_compile_args['nvcc'] = [
            '-D__CUDA_NO_HALF_OPERATORS__',
            '-D__CUDA_NO_HALF_CONVERSIONS__',
            '-D__CUDA_NO_HALF2_OPERATORS__',
        ]
        extra_compile_args['cxx']=["-DMS_WIN64","-MD"]#add
        sources += sources_cuda
    else:
        print(f'Compiling {name} without CUDA')
        extension = CppExtension

    return extension(
        name=f'{module}.{name}',
        sources=[os.path.join(*module.split('.'), p) for p in sources],
        define_macros=define_macros,
        extra_compile_args=extra_compile_args)

注意拷贝时的空格和tab一致问题。

当前文件夹运行

python setup.py build_ext --inplace #进行编译
python setup.py install develop #完成安装
pip list #查看是否安装成功,成功的话会有mmdet包以及对应版本

5、运行以下代码查看库是否安装正确 #尚未验证 也没有cuda +﹏+

from mmdet.apis import init_detector, inference_detector

config_file = 'configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py'
# download the checkpoint from model zoo and put it in `checkpoints/`
# url: http://download.openmmlab.com/mmdetection/v2.0/faster_rcnn/faster_rcnn_r50_fpn_1x_coco/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth
checkpoint_file = 'checkpoints/faster_rcnn_r50_fpn_1x_coco_20200130-047c8118.pth'
device = 'cuda:0'
# init a detector
model = init_detector(config_file, checkpoint_file, device=device)
# inference the demo image
inference_detector(model, 'demo/demo.jpg')

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值