05 2019 档案
Google开源命令行解析工具gflags
摘要:转自:https://blog.csdn.net/achelloworld/article/details/41959595# gflags是google开源的一套命令行参数解析工具,支持C++和Python语言,其使用方法; 1. 定义参数 使用gflags需要包含头文件#include <gfl
阅读全文
Eigen内存分配器aligned_allocator
摘要:在使用Eigen的时候,如果STL容器中的元素是Eigen数据库结构,比如下面用vector容器存储Eigen::Matrix4f类型或用map存储Eigen::Vector4f数据类型时: 这么使用编译能通过,当运行时会报段错误。 对eigen中的固定大小的类使用STL容器的时候,如果直接使用会出
阅读全文