08 2020 档案
git指令
摘要:参考: https://blog.csdn.net/Mr_YanYan/article/details/80049306 参考: https://www.open-open.com/lib/view/open1476069597550.html (很好的一篇博文) 1、从一个分支中创建一个新的分支 阅读全文
posted @ 2020-08-20 20:18 wulc++ 阅读(136) 评论(0) 推荐(0)
cnstream pipeline启动到准备数据过程的源码学习笔记(三):osd模块
摘要:本文是对cnstream代码的学习笔记 git代码 :https://github.com/Cambricon/CNStream 寒武纪开发者论坛: http://forum.cambricon.com/list-47-1.html 1 简介osd模块 这个模块主要是将检测和追踪结果叠加在原图上的。 阅读全文
posted @ 2020-08-18 19:30 wulc++ 阅读(505) 评论(0) 推荐(0)
cnstream pipeline启动到准备数据过程的源码学习笔记(二):source模块
摘要:本文是对cnstream/samples/example/example.cpp代码的学习笔记 git代码 :https://github.com/Cambricon/CNStream 寒武纪开发者论坛: http://forum.cambricon.com/list-47-1.html 1 实例化 阅读全文
posted @ 2020-08-18 15:36 wulc++ 阅读(542) 评论(0) 推荐(0)
C++异常处理
摘要:参考:http://c.biancheng.net/view/422.html https://www.cnblogs.com/MrYuan/p/4800257.html 程序运行时的异常情况可以通过try...catch来“跳过”异常情况导致的程序奔溃。 #include <iostream> # 阅读全文
posted @ 2020-08-17 15:38 wulc++ 阅读(201) 评论(0) 推荐(0)
cnstream pipeline启动到准备数据过程的源码学习笔记
摘要:本文是对cnstream/samples/example/example.cpp代码的学习笔记 git代码 :https://github.com/Cambricon/CNStream 寒武纪开发者论坛: http://forum.cambricon.com/list-47-1.html 1、创建p 阅读全文
posted @ 2020-08-12 15:35 wulc++ 阅读(721) 评论(0) 推荐(0)
C++11 function类模板
摘要:1、 std::function 类模板 std::function 是一个通用的多态函数包装器。当做函数指针。 2、function类模板 1 template< class R, class... Args > 2 class function< R (Args...)> 说明:R是被调用函数的 阅读全文
posted @ 2020-08-11 10:39 wulc++ 阅读(982) 评论(0) 推荐(0)