上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: 代码 监控脚本 MonitorGpu.py,该脚本会自动监控GPU内存和功耗情况,在满足条件情况下,可以自动运行脚本TestCuda.py import os import sys import time import platform cmd = 'python TestCuda.py' def 阅读全文
posted @ 2022-10-18 22:16 半夜打老虎 阅读(499) 评论(0) 推荐(0) 编辑
摘要: DOTA数据集官网: http://captain.whu.edu.cn/DOTAweb/index.html 官网提供水平和旋转目标提交接口,可以看到检测结果实时排行榜: http://captain.whu.edu.cn/DOTAweb/results.html 一、关键节点 1.1 更多的框 阅读全文
posted @ 2022-10-18 09:38 半夜打老虎 阅读(192) 评论(0) 推荐(0) 编辑
摘要: 一、打印可见变量及其值 get_cmake_property(_variableNames VARIABLES) foreach (_variableName ${_variableNames}) message(STATUS "${_variableName}=${${_variableName} 阅读全文
posted @ 2022-10-11 17:49 半夜打老虎 阅读(582) 评论(0) 推荐(0) 编辑
摘要: Yolo系列简单汇总一(yolov1至yolov5)见: https://www.cnblogs.com/xiaxuexiaoab/p/16615242.html 六、YoloX pdf: https://arxiv.org/pdf/2107.08430.pdf code: https://gith 阅读全文
posted @ 2022-09-01 08:57 半夜打老虎 阅读(2291) 评论(0) 推荐(0) 编辑
摘要: Yolo系列简单汇总二(yolox yolo6 yolo7)见:https://www.cnblogs.com/xiaxuexiaoab/p/16643821.html 一、YoloV1 pdf: https://arxiv.org/pdf/1506.02640.pdf code: https:// 阅读全文
posted @ 2022-08-31 17:11 半夜打老虎 阅读(1464) 评论(0) 推荐(0) 编辑
摘要: yolov5代码:https://github.com/ultralytics/yolov5 ncnn yolov5推理代码: https://github.com/Tencent/ncnn/blob/master/examples/yolov5.cpp 1. 导出训练好的模型为onnx格式 这里如 阅读全文
posted @ 2022-08-30 15:56 半夜打老虎 阅读(1885) 评论(1) 推荐(0) 编辑
摘要: 一、常用转换工具 在ncnn库编译完成后,在bin目录下有很多工具, 编译可参考ncnn编译与安装 onnx2ncnn 利用ncnn库的./onnx2ncnn 工具进行转换 onnx2ncnn *.onnx *.param *.bin 转换时如果报以下错误提示 ,则利用onnxsim库先对onnx模 阅读全文
posted @ 2022-08-30 09:57 半夜打老虎 阅读(1276) 评论(0) 推荐(0) 编辑
摘要: 1. 曲率基本概念 曲率是几何体不平坦程度的一种衡量。 曲线曲率 曲线曲率可以描述曲线的弯曲程度,在曲线方程知道的情况,且二阶导存在的情况下(直角坐标系),其值为 $$K=\frac{\left | y^{''} \right | }{(1 + {y^{'}}^{2})^{\frac{3}{2} } 阅读全文
posted @ 2022-08-29 21:43 半夜打老虎 阅读(1327) 评论(0) 推荐(0) 编辑
摘要: ncnn 是由腾讯开发一个跨平台的神经网络前向计算框架,为手机端推理提供了极致优化的高性能。其源码编译可参考官方教程Building。这里记录一下编译安装流程(Windows/Linux)。 一、安装所需依赖 git g++ cmake Protobuf GLslang Vulkan(可选,GPU推 阅读全文
posted @ 2022-07-03 13:31 半夜打老虎 阅读(2922) 评论(0) 推荐(0) 编辑
摘要: 一、Draco简介 谷歌开源的Draco库旨在大幅加速 3D 数据的编码、传输和解码。Draco不仅可以被用来压缩 mesh 和点云数据,它还支持压缩点( compressing points),连接信息,纹理协调,颜色信息,法线( normals)以及其他与几何相关的通用属性。另外Draco的算法 阅读全文
posted @ 2022-06-26 18:28 半夜打老虎 阅读(2971) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页