上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页
摘要: 屏蔽label输出 阅读全文
posted @ 2018-07-20 15:32 BlueOceans 阅读(645) 评论(0) 推荐(0) 编辑
摘要: 1. 画矩形 putText属性: 第一个参数是:需要写字的原图像, 第二个:需要写的内容,string类型的; 第三个:需要写的内容的左下角的坐标 第五个:字体大小 第六个:颜色 第七个:字体的厚度 第八个:默认8 阅读全文
posted @ 2018-07-19 13:58 BlueOceans 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 问题:Windows下生成的txt文件,在Linux下读取时会读取到多余字符(如: ^M) 原因:Windows和Linux下的换行符不一致 解决:在Linux代码中将多余字符去掉 阅读全文
posted @ 2018-07-19 13:47 BlueOceans 阅读(542) 评论(0) 推荐(0) 编辑
摘要: caffe版yolov3 https://github.com/eric612/Caffe-YOLOv3-Windows Windows版本darknet https://github.com/zhaolili/darknet 源码解析 https://blog.csdn.net/u01454071 阅读全文
posted @ 2018-06-22 16:17 BlueOceans 阅读(224) 评论(0) 推荐(0) 编辑
摘要: /* MAKEPATH.C */ #include #include void main( void ) { char path_buffer[_MAX_PATH]; char drive[_MAX_DRIVE]; char dir[_MAX_DIR]; char fname[_MAX_FNAME]; char... 阅读全文
posted @ 2018-06-19 20:51 BlueOceans 阅读(2270) 评论(1) 推荐(1) 编辑
摘要: #ifdef WIN32 #include #include #else #include #include #endif #include #include #define MAX_PATH_LEN 256 #ifdef WIN32 #define ACCESS(fileName,accessMode) _access(fileName,accessMode) #defin... 阅读全文
posted @ 2018-06-19 20:41 BlueOceans 阅读(13421) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/hrsstudy/article/details/65447947?utm_source=itdadao&utm_medium=referral 阅读全文
posted @ 2018-06-19 11:12 BlueOceans 阅读(342) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u014540717/article/category/6513159 阅读全文
posted @ 2018-06-05 09:21 BlueOceans 阅读(598) 评论(0) 推荐(0) 编辑
摘要: du -sh : 查看当前目录总共占的容量。而不单独列出各子项占用的容量 du -lh --max-depth=1 : 查看当前目录下一级子文件和子目录占用的磁盘容量。 阅读全文
posted @ 2018-05-15 21:10 BlueOceans 阅读(197) 评论(0) 推荐(0) 编辑
摘要: cp -rap [src] [dst] 阅读全文
posted @ 2018-05-15 21:09 BlueOceans 阅读(5130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 20 下一页