06 2019 档案
C/C++空结构体,空数组,空类作用
摘要:转:https://blog.csdn.net/hmdong7/article/details/78944674 https://blog.csdn.net/mercy_ps/article/details/82926305
阅读全文
C++/C++11中std::numeric_limits的使用
摘要:https://blog.csdn.net/fengbingchun/article/details/77922558 https://www.2cto.com/kf/201707/654311.html
阅读全文
目标检测 — 评价指标
摘要:转:https://www.cnblogs.com/eilearn/p/9071440.html 评价指标: 准确率 (Accuracy),混淆矩阵 (Confusion Matrix),精确率(Precision),召回率(Recall),平均正确率(AP),mean Average Precis
阅读全文
ubuntu16.0 caffe安装
摘要:1、安装深度学习所需要的依赖 执行下面的命令 sudo apt-get install libprotobuf-dev libleveldb-dev libsnappy-dev libopencv-dev libhdf5-serial-dev protobuf-compiler sudo apt-g
阅读全文
C++模板(template)中typename
摘要:1、typename关键字 在声明template参数时, 前缀关键字class和typename可以互换,但在使用模板参数T的内部类型名称即嵌套从属名称时只能用typename。 在C++标准化的过程中,引入关键字typename是为了说明:模板类型参数内部的标识符(associated type
阅读全文
使用SWIG实现Python调用C/C++代码
摘要:转自:http://cering.github.io/2015/12/08/%E4%BD%BF%E7%94%A8SWIG%E5%AE%9E%E7%8E%B0Python%E8%B0%83%E7%94%A8C-C-%E4%BB%A3%E7%A0%81/ SWIG是个帮助使用C或者C++编写的软件能与其
阅读全文