Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks程序(Python)配置问题总结


标签: python图像处理卷积神经网络CNN图像分类
  12471人阅读  评论(68)  收藏  举报
  分类:
   

目录(?)[+]

目录

预先浏览

  • Faster R-CNN原文
  • 源码(python)
  • 推荐阅读CSDN Blog
  • 说明 
    • 文中仅描述了我所遇到的问题,所以可能会不全。
    • 文中粘贴Error track,除了说明错误的原因外,更是为了便于检索和搜索。
    • 希望对大家有帮助,若有错误,还望指出。

Q&A

Q1: error: utils/bbox.c: No such file or directory

  • 错误描述:

    x86_64-linux-gnu-gcc: error: utils/bbox.c: No such file or directory 
    x86_64-linux-gnu-gcc: fatal error: no input files 
    compilation terminated. 
    error: command ‘x86_64-linux-gnu-gcc’ failed with exit status 4 
    make: * [all] Error 1

  • 解决方案: 手动用Python生成bbox.c

    cd $FRCN_ROOT/lib/utils
    cython bbox.pyx
         
         
    • 1
    • 2
    • 1
    • 2

Q2: error: nms/cpu_nms.c: No such file or directory**

  • 错误描述:

    x86_64-linux-gnu-gcc: error: nms/cpu_nms.c: No such file or directory 
    x86_64-linux-gnu-gcc: fatal error: no input files 
    compilation terminated. 
    error: command ‘x86_64-linux-gnu-gcc’ failed with exit status 4 
    make: * [all] Error 1

  • 解决方案: 手动用python生成cpu_nms.c

    cd $FRCN_ROOT/lib/nms
    cython cpu_nms.pyx
         
         
    • 1
    • 2
    • 1
    • 2

Q3: error: nms/gpu_nms.c: No such file or directory**

  • 错误描述:

    x86_64-linux-gnu-gcc: error: nms/gpu_nms.c: No such file or directory 
    x86_64-linux-gnu-gcc: fatal error: no input files 
    compilation terminated. 
    error: command ‘x86_64-linux-gnu-gcc’ failed with exit status 4 
    make: * [all] Error 1

  • 解决方案: 手动用cython生成gpu_nms.c

    cd $FRCN_ROOT/lib/nms
    cython gpu_nms.pyx
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值