1 Star 0 Fork 0

Yee L. / cereslearning

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.cpp 520 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yee 提交于 2017-03-16 16:27 . initial commit
//
// Created by lancelot on 3/15/17.
//
#include <glog/logging.h>
#include "PNPSimulation.h"
int main(int argc, char* argv[]) {
google::InitGoogleLogging(argv[0]);
Eigen::Matrix<double, 6, 1> xi;
xi << 23.0, 11.0, 12.0, 0.7, 1.2, 0.33;
Eigen::Matrix2d Var;
Var(0, 0) = 1;
Var(1, 1) = 3;
Var(1, 0) = Var(0, 1) = 1.5;
Sophus::SE3d T = Sophus::SE3d::exp(xi);
//std::cout << T.matrix3x4() << std::endl;
PNPSimulation simulation(T, Var);
simulation.start();
return 0;
}
C++
1
https://gitee.com/skyridermike/cereslearning.git
git@gitee.com:skyridermike/cereslearning.git
skyridermike
cereslearning
cereslearning
master

搜索帮助