上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 28 下一页
摘要: 网络部分 网络在/models/yolov3.yaml里面定义,如下: # parameters nc: 80 # number of classes depth_multiple: 1.0 # model depth multiple width_multiple: 1.0 # layer cha 阅读全文
posted @ 2021-09-18 17:19 无左无右 阅读(809) 评论(0) 推荐(0)
摘要: [目标检测 -- R-CNN,Fast R-CNN,Faster R-CNN] https://www.cnblogs.com/yanghailin/p/14767995.html [目标检测 SSD] https://www.cnblogs.com/yanghailin/p/14769384.ht 阅读全文
posted @ 2021-09-15 20:10 无左无右 阅读(335) 评论(0) 推荐(0)
摘要: 来源于这篇博客 https://blog.csdn.net/qq_35703954/article/details/82691030?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522163004801416780357227263%25 阅读全文
posted @ 2021-08-27 15:19 无左无右 阅读(589) 评论(0) 推荐(0)
摘要: 这里需要编译caffe的python接口,然后训练的时候报错,报错内容显示是opencv的问题。 但是在终端下面python,再import cv2,再读取一张图片是可以的。 可是训练就报错,也不知道用的哪里的opencv。 pip2 install 'opencv-python<3.4' 装不上, 阅读全文
posted @ 2021-08-09 20:11 无左无右 阅读(598) 评论(0) 推荐(0)
摘要: 测试的目录结构如下: . ├── 1.txt ├── 2.txt ├── a │ ├── 3.txt │ ├── d │ └── e ├── b │ ├── 4.txt │ ├── 7.txt │ ├── f │ │ └── 5.txt │ └── h └── c └── 5.txt 7 direc 阅读全文
posted @ 2021-07-23 11:50 无左无右 阅读(79) 评论(0) 推荐(0)
摘要: 简单替换表达式 :[range]s/from/to/[flags] range:搜索范围,如果没有指定范围,则作用于当前行。 :1,10s/from/to/ 表示在第1到第10行(包含第1,第10行)之间搜索替换; :10s/from/to/ 表示只在第10行搜索替换; :%s/from/to/ 表 阅读全文
posted @ 2021-07-14 20:21 无左无右 阅读(147) 评论(0) 推荐(0)
摘要: 原因1: 奇数相对于偶数,有中心点,对边沿、对线条更加敏感,可以更有效的提取边沿信息。 偶数也可以使用,但是效率比奇数低。在数以万计或亿计的计算过程中,每个卷积核差一点,累计的效率就会差很多。 或者解释: 《数字图像处理 (第三版)》(阮秋琦翻译)p89 也可以使用偶数尺寸的滤波器,或使用混合有偶数 阅读全文
posted @ 2021-06-30 09:38 无左无右 阅读(491) 评论(0) 推荐(0)
摘要: head -1 vs head -n 1 两者等价 lscpu|grep CPU\(s\)|head -1 等价于: lscpu|grep CPU\(s\)|head -n 1 都显示如下: CPU(s): 8 其中,lscpu|grep CPU(s)输入如下: CPU(s): 8 On-line 阅读全文
posted @ 2021-06-29 11:04 无左无右 阅读(289) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/zhaominpro/article/details/82630528 https://zhuanlan.zhihu.com/p/47765176 A.首先了解下1和2在Linux中代表什么? 在Linux系统中0 1 2是一个文件描述符 名称 代码 操作 阅读全文
posted @ 2021-06-28 12:05 无左无右 阅读(184) 评论(0) 推荐(0)
摘要: 1.error while loading shared libraries: libcaffe.so.1.0.0: cannot open shared object file: No such file or directory error while loading shared librar 阅读全文
posted @ 2021-06-25 15:50 无左无右 阅读(793) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 28 下一页