http://blog.csdn.net/xiaxiazls/article/details/52039473,此链接提供的解决方案,没有添加boost_regex,未能解决问题
出现错误:
libcaffe.so:-1: error: undefined reference to `boost::re_detail::cpp_regex_traits_implementation<char>::transform_primary(char const*, char const*) const'
解决方案:
修改Makefile ,line181
加入boost_regex
错误2:make: *** [.build_release/tools/create_label_map.bin] Error 1
.build_release/lib/libcaffe.so: undefined reference to `cv::VideoCapture::set(int, double)'
解决方案:
修改Makefile.config
将#USE_PKG_CONFIG := 1 的#去掉,因为我的电脑需要通过pkg_config识别opencv
错误3:运行 ./data/VOC0712/creat_data.sh时出现错误
ImportError: No module named google.protobuf.internal
ImportError: No module named skimage.io
solution:依赖项缺失 安装即可 sudo apt-get install python-protobuf sudo apt-get install python-skimage