上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 需求目标 执行Python程序的时候在控制台输出内容的时候固定一刷新内容,如下: 而不是 实现上很简单 只要增加一个 end='\r' 的print参数 阅读全文
posted @ 2019-07-13 14:22 clemente 阅读(1284) 评论(0) 推荐(0) 编辑
摘要: 搜索进程号 杀掉 阅读全文
posted @ 2019-07-10 17:50 clemente 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 注意: Python2.x默认编码环境是ASCII,当和取回的数据编码格式不一致时,可能会造成乱码;我们可以指定保存内容的编码格式,一般情况下,我们可以在代码最上方添加 阅读全文
posted @ 2019-07-04 19:24 clemente 阅读(143) 评论(0) 推荐(0) 编辑
摘要: https://hihozhou.com/blog/2017/05/11/linux-compile-opencv-c++-file.html 阅读全文
posted @ 2019-06-22 22:36 clemente 阅读(551) 评论(0) 推荐(0) 编辑
摘要: void draw_detections(image im, detection *dets, int num, float thresh, char **names, image **alphabet, int classes) 中修改 draw_label(im,5+5,5,label,rgb) 阅读全文
posted @ 2019-06-22 20:02 clemente 阅读(464) 评论(0) 推荐(0) 编辑
摘要: kill -s 9 24348 阅读全文
posted @ 2019-06-22 17:51 clemente 阅读(161) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zdy0_2004/article/details/80102076 https://www.jianshu.com/p/fb5f791fcb18 阅读全文
posted @ 2019-06-17 09:27 clemente 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 刚配置完环境 https://www.cnblogs.com/clemente/p/11029117.html 能正常跑原版 darknet ,但是跑了一下别人修改的版本出现了错误 查Google之后才发现遇到这个问题的朋友不在少数,大概的原因是因为OpenCV 3.4.1在C的API里有bug,所 阅读全文
posted @ 2019-06-16 16:18 clemente 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/41096599 1、先查看是否安装有以下组件,若有先考虑彻底删除再安装(安装严格按照下面顺序进行) 查看nvidia 版本 查看cuda 版本 查看cudnn 版本 2.安装nvidia驱动 1.禁用系统默认nouveau显卡驱动 打开系统 阅读全文
posted @ 2019-06-15 22:29 clemente 阅读(1321) 评论(0) 推荐(0) 编辑
摘要: cmake . make 阅读全文
posted @ 2019-06-15 18:17 clemente 阅读(347) 评论(0) 推荐(0) 编辑
摘要: 阻塞/同步:打一个电话一直到有人接为止非阻塞:打一个电话没人接,每隔10分钟再打一次,知道有人接为止异步:打一个电话没人接,转到语音邮箱留言(注册),然后等待对方回电(call back) 看起来异步是最高效,充分利用资源,可以想像整个系统能支持大规模并发。但问题是调试很麻烦,不知道什么时候call 阅读全文
posted @ 2019-06-11 15:35 clemente 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 句柄 = 编号 (文件编号 , 窗口编号) 阅读全文
posted @ 2019-06-11 12:52 clemente 阅读(185) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/zdy0_2004/article/details/80102076 阅读全文
posted @ 2019-06-10 16:30 clemente 阅读(253) 评论(0) 推荐(0) 编辑
摘要: https://docs.djangoproject.com/zh-hans/2.2/ 阅读全文
posted @ 2019-06-05 20:58 clemente 阅读(123) 评论(0) 推荐(0) 编辑
摘要: watch -n 0.5 -d nvidia-smi #每隔0.5秒刷新一次 阅读全文
posted @ 2019-06-02 20:12 clemente 阅读(1812) 评论(0) 推荐(0) 编辑
摘要: 在图像处理中,卷积经常作为特征提取的有效方法。一幅图像在经过卷积 操作后得到结果称为特征映射(Feature Map)。 汇聚层(Pooling Layer)也叫子采样层(Subsampling Layer),或者直译为池化层 其作用是 进行特征选择,降低特征数量,并从而减少参数数量 : 卷积层虽然 阅读全文
posted @ 2019-06-02 13:57 clemente 阅读(161) 评论(0) 推荐(0) 编辑
摘要: su命令不能切换root,提示su: Authentication failure 原因是 没有设置过 root密码 会提示输入密码 重新输入密码 下次再su的时候只要输入密码就可以成功登录了 阅读全文
posted @ 2019-05-30 20:41 clemente 阅读(2957) 评论(0) 推荐(0) 编辑
摘要: 转自 https://www.cnblogs.com/xuliangxing/p/7642650.html 一、设置Ubuntu 16.04 允许进行远程控制 首先,我们先设置Ubuntu的远程控制,将其设置为允许被远程连接,进入系统-》首项-》桌面共享,或者直接搜索桌面共享,如图所示 将【允许其他 阅读全文
posted @ 2019-05-30 17:01 clemente 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 原来是因为github.com没有被主机给解析 1.第一步是 ping 你的gitlab 或者 github服务器ip地址 如果每隔几秒有 time = xx.ms 刷新 就证明是通的 2. 编辑 etc/host 根据原有的样式 添加需要新增的目标地址 3. 现在应该可以 成功 git clone 阅读全文
posted @ 2019-05-28 14:05 clemente 阅读(8322) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-24 16:36 clemente 阅读(163) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页