1. reference link: https://github.com/rbgirshick/py-faster-rcnn 2. need copy the 'makefile.config' file to the directory ''/home/uni/projects/maskrcnn/fasterrcnn/py-faster-rcnn/caffe-fast-rcnn" 3. the 4th step: when using command: make -j8 && make pycaffe lhdf5 error solution is: change 'Makefile' file as follows: 删除--- LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_hl hdf5 增加+++ LIBRARIES += glog gflags protobuf boost_system boost_filesystem m hdf5_serial_hl hdf5_serial 4. Run the demo " cd $FRCN_ROOT ./tools/demo.py " error (1) lack easydict solution: $ sudo pip install easydict error(2) lack cv2 solution: $ sudo apt-get install python-opencv 5. Usage: cd $FRCN_ROOT ./experiments/scripts/faster_rcnn_alt_opt.sh [GPU_ID] [NET] [--set ...] ./experiments/scripts/faster_rcnn_alt_opt.sh 0 VGG16 pascal_voc 6. error and...
Comments
Post a Comment