上一页 1 2 3 4 5 6 7 ··· 20 下一页
摘要: 统计文件个数 ls -l |grep "^-"|wc -l 统计文件夹个数 ls -l |grep "^d"|wc -l 统计文件夹内文件个数,包括子文件夹 ls -lR|grep "^-"|wc -l 阅读全文
posted @ 2019-10-30 16:56 BlueOceans 阅读(666) 评论(0) 推荐(0) 编辑
摘要: Human Pose Estimation for Real-World Crowded Scenarios https://arxiv.org/pdf/1907.06922.pdf CrowdPose: Efficient Crowded Scenes Pose Estimation and A 阅读全文
posted @ 2019-10-24 20:55 BlueOceans 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 1. 图像读取 opencv的python和c++读取的图像结果不一致,是因为python和c++采用的opencv版本不一样,从而使用的解码库不同,导致读取的结果不同。 详细内容参考:https://www.cnblogs.com/haiyang21/p/11655404.html 2. 图像变换 阅读全文
posted @ 2019-10-22 19:40 BlueOceans 阅读(2933) 评论(0) 推荐(0) 编辑
摘要: 问题: 解决: 阅读全文
posted @ 2019-10-21 09:50 BlueOceans 阅读(2244) 评论(0) 推荐(0) 编辑
摘要: 直接通过python矩阵操作变换,简单高效 其中,[::-1] 表示顺序相反操作 ,如下面操作: 输出:[5, 4, 3, 2, 1] 阅读全文
posted @ 2019-10-12 14:19 BlueOceans 阅读(2492) 评论(0) 推荐(0) 编辑
摘要: 问题: 在读取同一张图像时,python读取的结果和c++读取的结果差异较大,测试图像中最大误差达到16. 原因: python的opencv采用的是4.1.1,c++采用的是3.1.0,在解析JPEG的时候,采用的解码库不同,我们可以通过 cv2.getBuildInformation() 和 c 阅读全文
posted @ 2019-10-11 17:08 BlueOceans 阅读(2510) 评论(0) 推荐(0) 编辑
摘要: 创建分卷压缩文件 -s: 创建分卷的大小 -r: 循环压缩文件夹下面的内容 切分已有的文件: 执行晚之后回创建下面一系列文件: new.zip new.z01 new.z02 new.z03 ... 解压分卷文件 # 将分卷文件合并成一个单独的文件 zip -s 0 split.zip --out 阅读全文
posted @ 2019-09-29 16:06 BlueOceans 阅读(9388) 评论(0) 推荐(2) 编辑
摘要: 配置: 1. 命令行启动 2. 也可以Anaconda直接启动 3. 设置token,如下图所示,命令行中输入 注意: 访问地址:http://localhost:8888/ token:cb2dcc41ac7a3185e6109759dca0ebf0c9309914c0eecc76 将token= 阅读全文
posted @ 2019-09-28 11:35 BlueOceans 阅读(3859) 评论(0) 推荐(0) 编辑
摘要: 深度学习 https://github.com/ShusenTang/Dive-into-DL-PyTorch/blob/master/docs/chapter03_DL-basics/3.1_linear-regression.md pytorch https://github.com/hunki 阅读全文
posted @ 2019-09-27 17:59 BlueOceans 阅读(247) 评论(0) 推荐(0) 编辑
摘要: Fail to export the model in PyTorch https://github.com/onnx/tutorials/blob/master/tutorials/PytorchAddExportSupport.md#fail-to-export-the-model-in-pyt 阅读全文
posted @ 2019-09-18 17:52 BlueOceans 阅读(7858) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 20 下一页