fast-rcnn安装及例子执行中的问题(一)

推荐安装文章

skimage.io

问题:ImportError: No module named skimage.io
解决:sudo pip install scikit-image
接着出错:ImportError: No module named scipy
再安装:sudo pip install scipy
出错:error: library dfftpack has Fortran sources but no Fortran compiler found
再安装:ruby -e “$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
sudo apt-get install gfortran

补充
今天(原文半年之后)再次遇到,解决:

先 [ 换源 ](/2018/04/08/ubuntu 安装numpy的烂问题libgfortran3依赖)
再执行:

sudo apt-get install python-skimage

google.protobuf

问题:

1
2
from google.protobuf.internal import enum_type_wrapper  
ImportError: No module named google.protobuf.internal

解决(must use sudo,and when it perform,it will auto install mavproxy next.):

1
sudo pip install droneapi

or you can look for this paper:https://github.com/dronekit/dronekit-python/issues/121

and there is another people say this:http://www.cnblogs.com/taokongcn/p/4341290.html

内存出错

问题:在尝试demo时出现错误(具体英文没有记,大概意思是说多少多少内存不够,或者直接出现“已杀死”的字样)
解决:添加执行参数:./tools/demo.py –cpu –net caffenet
原因:猜测是因为内存的原因导致caffe崩溃。

文章作者:Lily

原始链接:/2018/04/08/fast-rcnn%E5%AE%89%E8%A3%85%E5%8F%8A%E4%BE%8B%E5%AD%90%E6%89%A7%E8%A1%8C%E4%B8%AD%E7%9A%84%E9%97%AE%E9%A2%98%EF%BC%88%E4%B8%80%EF%BC%89/

版权说明:转载请保留原文链接及作者。