Fast RCNN ubuntu下安裝筆記

微軟研究院大神Ross Girshick新作:fase CNN,測試速度比RCNN快200倍。
文章:http://arxiv.org/pdf/1504.08083v1.pdf
安裝筆記:
第一步:
嚴格按照安裝步驟,特別是第一個:
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
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章