Fast RCNN ubuntu下安装笔记

微软研究院大神Ross Girshick新作:fase CNN,测试速度比RCNN快200倍。
文章: http://arxiv.org/pdf/1504.08083v1.pdf
代码: https://github.com/rbgirshick/fast-rcnn
安装笔记:
第一步:
严格按照安装步骤,特别是第一个:
git clone --recursive https://github.com/rbgirshick/fast-rcnn.git
不要尝试着自己下载安装,不然很多东西下载不全面

第二步: Build the Cython modules
     cd   $FRCN_ROOT /lib
     make
     如果出现问题:
     ImportError: No module named Cython.Distutils
     解决: 先 sudo pip install cython  然后再make
第三步:在caffe-fast-rcnn目录下, 修改:
      # In your Makefile.config, make sure to have this line uncommented
     WITH_PYTHON_LAYER:=1
      然后make -j16 && make pycaffe
第四步:
     cd   $FRCN_ROOT
     ./data/scripts/fetch_fast_rcnn_models.sh
如果遇到问题,可能要:
     sudo pip install  easydict
         sudo pip install protobuf

你可能感兴趣的:(Fast,安装笔记,RCNN,RCNN)