faster-rcnn 安装编译

1、下载:

git clone --recursive https://github.com/rbgirshick/py-faster-rcnn.git

2、

cd $FRCN_ROOT/lib
make
3、

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
# and your Makefile.config in place, then simply do:
make -j8 && make pycaffe
4、pb.h问题

protoc src/caffe/proto/caffe.proto --cpp_out=.

mkdir include/caffe/proto

mv src/caffe/proto/caffe.pb.h include/caffe/proto

你可能感兴趣的:(faster-rcnn 安装编译)