上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页
摘要: http://www.runoob.com/linux/linux-comm-grep.html http://www.runoob.com/linux/linux-comm-awk.html matplotlib subplot 的使用 https://blog.csdn.net/gatieme/ 阅读全文
posted @ 2018-06-20 15:51 unicoe 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 光流法简单介绍 https://blog.csdn.net/carson2005/article/details/7581642 阅读全文
posted @ 2018-06-06 16:08 unicoe 阅读(255) 评论(0) 推荐(0) 编辑
摘要: http://sklearn.apachecn.org/cn/0.19.0/modules/linear_model.html#ordinary-least-squares https://github.com/lijin-THU/notes-python https://github.com/rj 阅读全文
posted @ 2018-06-05 22:14 unicoe 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 在github 上搜索track multiple objects 阅读全文
posted @ 2018-06-05 21:09 unicoe 阅读(135) 评论(0) 推荐(0) 编辑
摘要: [C 18:49:50.816 NotebookApp] Bad config encountered during initialization:[C 18:49:50.816 NotebookApp] The 'contents_manager_class' trait of a Noteboo 阅读全文
posted @ 2018-05-24 18:52 unicoe 阅读(3843) 评论(0) 推荐(0) 编辑
摘要: 是处于SSD根目录下,pictures.txt是你要测试的图片的图片列表,类似于这样的格式 可以在命令的最后加上重定向, 来将结果保存在result.txt中. 阅读全文
posted @ 2018-05-10 09:57 unicoe 阅读(745) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/willnote/p/6746499.html 阅读全文
posted @ 2018-04-28 22:00 unicoe 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Mask RCNN 一、核心要点 (1)RoIAlign mask rcnn的关键 一是RoIAlign,是将RoIPooling的插值方式,从最近邻插值(INTER_NEAREST)方式变为双线性插值。 这里复习一下关于RoI,RoIPooling的知识 RoI是Region of Interes 阅读全文
posted @ 2018-04-26 20:53 unicoe 阅读(2952) 评论(0) 推荐(0) 编辑
摘要: FCN笔记(Fully Convolutional Networks for Semantic Segmentation) (1)FCN做的主要操作 (a)将之前分类网络的全连接层都换成卷积层; FCN将全连接层换成了卷积层,形成一个全卷积网络,最后生成一个heatmap。卷积层的大小即为 (1,1 阅读全文
posted @ 2018-04-25 15:57 unicoe 阅读(19937) 评论(3) 推荐(1) 编辑
该文被密码保护。 阅读全文
posted @ 2018-04-23 11:06 unicoe 阅读(2) 评论(0) 推荐(0) 编辑
摘要: PAMI2012相关 http://blog.csdn.net/hk121/article/details/72676341 阅读全文
posted @ 2018-01-20 18:49 unicoe 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 批量命名:参考https://www.cnblogs.com/xiangzi888/archive/2011/11/03/2234000.html 修改后面5个字母为snail 将当前文件夹下的所有文件的名称前加“old_” 将但当前文件夹下的所有文件名后缀清空 批量删除同一后缀名的文件 参考:ht 阅读全文
posted @ 2018-01-16 20:35 unicoe 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 若对caltech数据集进行测评的话,需要使用code3.2.1中的dbeva.m 代码进行测评,之前不知道,很长时间里,都是自己画log average miss rate曲线,导致得到的分数就很高,结果很差,还不能解释...知道在github上看到了这位大牛的解释: https://github 阅读全文
posted @ 2018-01-14 09:46 unicoe 阅读(8811) 评论(3) 推荐(0) 编辑
摘要: 来源:Matlab中文论坛 % 字符串处理 a=' a';b='b b';c='cccc';m='' % 获取字符串长度 length(a) % 连接两个字符串,每个字符串最右边的空格被裁切 d=strcat(a,c) length(d) % 连接多行字符串,每行长度可不等,自动把非最长字符串最右边 阅读全文
posted @ 2018-01-12 20:17 unicoe 阅读(363) 评论(0) 推荐(0) 编辑
摘要: POJ2251 用BFS就是增加一个维度,变成3维 #include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <queue> using namespace std; int L, R 阅读全文
posted @ 2018-01-10 19:36 unicoe 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 递归+回溯 基本思想就是: 1、用一个标记数组记录当前那些数字已经被用了 2、枚举第一个位置所有点的可能情况,然后将第一个位置使用的元素进行标记,然后DFS(i,0) 3、DFS(num, level)要做的事情就是,先将该数放进g[level] = num; (即将当前数放进该层中),然后去遍历v 阅读全文
posted @ 2018-01-09 08:37 unicoe 阅读(728) 评论(0) 推荐(0) 编辑
摘要: https://vjudge.net/contest/65959#problem A题POJ1321 题目类型:DFS类型题目 难易程度:1 被吊打的老年选手,现在连字符串图的读入都有点问题了。不过多写几下就好了。 思路: DFS的参数是 当前遍历到的层数 和 当前放置的棋子的个数。 用一个标记数组 阅读全文
posted @ 2018-01-08 23:33 unicoe 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 今天总结! https://www.cnblogs.com/lifegoesonitself/archive/2013/12/24/3489508.html http://blog.csdn.net/guojingjuan/article/details/51206256 https://www.z 阅读全文
posted @ 2018-01-06 17:26 unicoe 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 用codeblocks做网络实践作业的时候,参考一下博客 https://www.cnblogs.com/kan0n/p/4479158.html http://blog.csdn.net/u012291157/article/details/46391189 http://blog.csdn.ne 阅读全文
posted @ 2018-01-06 17:24 unicoe 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 两个不同的程序,同时使用一块没有占满的显卡,是不影响的,2018年1月2日15:14:13 通过同 1080Ti实测。 新年规划: 阅读全文
posted @ 2018-01-02 15:15 unicoe 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页