
caffe安装&&faster rcnn安装
野孩子1991
热爱所以不放弃
展开
-
fast-rcnn训练自己数据集以及demo代码解读和总结(面向fast-rcnn初学者)
首先推荐文章,里面有讲如何安装fast-rcnn,以及编译。或者我直接把fast-rcnn的地址写出来:https://github.com/rbgirshick/fast-rcnn一.最后的demo.py(地址:https://github.com/rbgirshick/fast-rcnn/blob/master/tools/demo.py)的代码解读: 1.获取原创 2016-03-27 15:20:21 · 8164 阅读 · 4 评论 -
matlab安装遇到问题/install/Matlab/bin/util/oscheck.sh: /lib64/libc.so.6: not found
1./home/cl/install/Matlab/bin/util/oscheck.sh: /lib64/libc.so.6: not found 解决:locate libc.so定位出lib.so的位置然后软连接:ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.62.出现找不到jre的情况,原创 2016-04-10 15:17:30 · 1890 阅读 · 0 评论 -
caffe用python时可能需要的模块安装
1.ImportError: No module named Cython.Distutils2.ImportError: No module named easydict3.ubuntu python安装 sklearn.utils4.ubuntu python安装 pandas.io.parsers5.ImportError: No module named cv26.ImportError: No module named yaml原创 2016-04-10 15:02:19 · 23656 阅读 · 2 评论 -
fast-rcnn的例子执行和selective search中遇到的问题及解决(二)
File "/usr/lib/python2.7/subprocess.py", line 1327, in _execute_child raise child_exception OSError: [Errno 2] No such file or directory这个问题在selective search的执行过程中出的问题。github上的那个用python调用MATLAB的例子。在执行那句调用MATLAB时报的错。问题是你的MATLAB没起来。解决方案如下。 出现了En原创 2015-12-26 23:35:03 · 8124 阅读 · 1 评论 -
fast-rcnn安装及例子执行中的问题(一)
1:问题:ImportError: No module named skimage.io2.问题: from google.protobuf.internal import enum_type_wrapper ImportError: No module named google.protobuf.internal原创 2015-12-14 15:32:28 · 4104 阅读 · 2 评论 -
cmake安装遇到问题总结
推荐cmake安装文章点击打开链接以及opencv例子执行。1、qmake: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': No such file or directory 解决:安装:sudo apt-get install qt-sdk(470M,so heavy) but some p原创 2015-11-23 20:35:45 · 23354 阅读 · 0 评论 -
ubuntu 安装numpy的烂问题libgfortran3依赖
想在自己VM上安装numpy,然后尼码出来一些乱七八糟的问题。活该我用ubuntu还不太熟。大哭1.首先直接sudo apt-get install python-numy。然后出错:错误 http://cn.archive.ubuntu.com/ubuntu/ trusty-updates/main libgfortran3 i386 4.8.4-2ubuntu1~14.04 40原创 2016-03-20 23:22:39 · 10745 阅读 · 0 评论 -
ubuntu14.04+GPU+caffe
非常建议ubuntu14.04的系统一、执行下面的操作,然后验证硬件支持GPU CUDA,只要型号存在于https://developer.nvidia.com/cuda-gpus,就没问题了 $ lspci | grep -i nvidia (GPU买之前是专门查过的,这个地方不太重要)二、确定你的系统是否支持 $ uname -m && cat /e原创 2016-05-12 20:38:45 · 3190 阅读 · 0 评论