您的位置:首页 > 其它

faster-RCNN环境配置(Ubuntu14.04)

2016-01-26 11:48 447 查看

Requirements: hardware

For training smaller networks (ZF, VGG_CNN_M_1024) a good GPU (e.g., Titan, K20, K40, ...) with at least 3G of memory suffices
For training with VGG16, you'll need a K40 (~11G of memory)

Installation (sufficient for the demo)

Clone the Faster R-CNN repository

# Make sure to clone with --recursive
git clone --recursive https://github.com/rbgirshick/py-faster-rcnn.git[/code] 
Build the Cython modules

cd $FRCN_ROOT/lib
make


sudo apt-get insatll python-pip [code]

[/code]

sudo pip install cython
sudo apt-get install python-opencv
sudo pip install easydict

Build Caffe and pycaffe

cd $FRCN_ROOT/caffe-fast-rcnn
# Now follow the Caffe installation instructions here:
#   http://caffe.berkeleyvision.org/installation.html 
# If you're experienced with Caffe and have all of the requirements installed


参考我的另一篇博客:

Ubuntu14.04(64位)+Cuda7.5+Cudnn7.0+Caffe+Matlab(Linux版)

http://blog.csdn.net/qq_26898461/article/details/50586052

# In your Makefile.config, make sure to have this line uncommented
WITH_PYTHON_LAYER := 1

# and your Makefile.config in place, then simply do:make -j8 && make pycaffe

Download pre-computed Faster R-CNN detectors

cd $FRCN_ROOT
./data/scripts/fetch_faster_rcnn_models.sh


Demo

After successfully completing

basic installation, you'll be ready to run the demo.

Python

To run the demo

cd $FRCN_ROOT
./tools/demo.py
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: