会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
BlueOceans
联系方式:dianxinshidian@126.com
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
20
下一页
2018年9月29日
linux环境 :LIBRARY_PATH, LD_LIBRARY_PATH区别
摘要: 参考: https://www.cnblogs.com/mylinux/p/4955448.html LIBRARY_PATH和LD_LIBRARY_PATH是Linux下的两个环境变量,二者的含义和作用分别如下: LIBRARY_PATH环境变量用于在程序编译期间查找动态链接库时指定查找共享库的路
阅读全文
posted @ 2018-09-29 14:49 BlueOceans
阅读(455)
评论(0)
推荐(0)
2018年9月26日
内存泄漏工具vld
摘要: 网址:https://kinddragon.github.io/vld/
阅读全文
posted @ 2018-09-26 11:47 BlueOceans
阅读(124)
评论(0)
推荐(0)
2018年9月18日
size_t的使用
摘要: size_t的取值range是目标平台下最大可能的数组尺寸 典型的例子:x64平台下size_t是8位,而x32平台下是4位; int在两个平台下均为4位 所以在使用的时候一定要配置好对应的平台,否则在读取文件的时候会出现错误 比如,在darknet读取模型文件的时候,size_t *seen =
阅读全文
posted @ 2018-09-18 18:05 BlueOceans
阅读(443)
评论(0)
推荐(0)
2018年9月4日
c++ string去除首尾 空格、\n、\r、\t
摘要: string s = " test "; size_t n = s.find_last_not_of(" \r\n\t"); if (n != string::npos){ s.erase(n + 1, s.size() - n); } n = s.find_first_not_of(" \r\n\t"); if (n !...
阅读全文
posted @ 2018-09-04 20:18 BlueOceans
阅读(6765)
评论(0)
推荐(1)
吴恩达deeplearning之CNN—卷积神经网络
摘要: https://blog.csdn.net/ice_actor/article/details/78648780 个人理解: 卷积计算的过程其实是将原始的全连接换成了卷积全连接,每个kernel为对应通道的权重 卷积全连接和点全连接,注意卷积核是多维的 [ c_in, k_h, k_w ]
阅读全文
posted @ 2018-09-04 11:09 BlueOceans
阅读(463)
评论(0)
推荐(0)
2018年9月3日
c++ string替换指定字符串及替换所有子串
摘要: 替换单个字符串 string fnd = "dataset"; string rep = "labels"; string buf = "d:/data/dataset/ii.jpg"; buf = buf.replace(buf.find(fnd), fnd.length(), rep); 替换所
阅读全文
posted @ 2018-09-03 14:54 BlueOceans
阅读(17368)
评论(0)
推荐(1)
2018年8月19日
opencv灰度直方图
该文被密码保护。
阅读全文
posted @ 2018-08-19 10:30 BlueOceans
阅读(1)
评论(0)
推荐(0)
2018年8月15日
oss命令使用
摘要: 下载文件夹 ossutil64 cp oss://folder/ out_folder/ -r --jobs 20
阅读全文
posted @ 2018-08-15 11:28 BlueOceans
阅读(278)
评论(0)
推荐(0)
2018年8月6日
分类网络设计技巧
摘要: Resnet网络:两种不同设计结构的误差对比 疑问1:残差网络用于解决深度网络的退化问题,那么对于浅层网络也有效果吗? 疑问2:不同的loss函数如何影响整个网络的更新的?
阅读全文
posted @ 2018-08-06 18:20 BlueOceans
阅读(337)
评论(0)
推荐(0)
2018年7月30日
opencv imdecode和imencode用法
摘要: 主要是对内存数据自动编解码
阅读全文
posted @ 2018-07-30 19:50 BlueOceans
阅读(29608)
评论(0)
推荐(1)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
20
下一页
公告