工具类
StevenASDFLJEOPRI
这个作者很懒,什么都没留下…
展开
-
网页上绘制prototxt定义的深度网络结构图
http://ethereon.github.io/netscope/#/editor原创 2017-09-04 15:47:52 · 508 阅读 · 0 评论 -
gcc相关
http://blog.csdn.net/ykr168age/article/details/61615212原创 2017-12-14 00:15:04 · 257 阅读 · 0 评论 -
caffe安装过程中与protobuf相关的问题
fatal error: caffe/proto/caffe.pb.h: No such file or directory 一般出现在 caffe 的编译时, 可通过如下方式将编译通过(首先需要进入 caffe 根目录): $ protoc src/caffe/proto/caffe.proto –cpp_out=. $ sudo mkdir include/caffe/prot原创 2017-12-12 15:09:42 · 1609 阅读 · 0 评论 -
快速找到c++项目中的错误
glog原创 2018-03-15 11:59:49 · 2770 阅读 · 0 评论 -
ubuntu基本操作
批量替换文件夹下所有文件中的特定字符sed -i ‘s/old-word/new-word/g’ *.txt替换单个文件中的特定字符sed ‘s/old-word/new-word/g’ input.txt > output.txt查看含有特定字符的文件find .|xargs grep -ri “strtomatch” -l查看含有特定字符的cpp文件...原创 2017-09-05 19:43:57 · 306 阅读 · 0 评论 -
Ubuntu 使用virtualenv安装python3的cv2模块
Ubuntu 使用virtualenv安装python3的cv2模块原创 2018-03-29 12:06:17 · 1107 阅读 · 0 评论