-
Notifications
You must be signed in to change notification settings - Fork 0
/
CovEstimation.h
31 lines (24 loc) · 1.12 KB
/
CovEstimation.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// LibQPEP: A Library for Globally Optimal Solving Quadratic Pose Estimation Problems,
// It also gives highly accurate uncertainty description of the solutions.
//
// Authors: Jin Wu and Ming Liu
// Affiliation: Hong Kong University of Science and Technology (HKUST)
// Emails: jin_wu_uestc@hotmail.com; eelium@ust.hk
// Reference: Wu, J., et al. (2022) Quadratic Pose Estimation Problems:
// Globally Optimal Solutions,
// Solvability/Observability Analysis,
// and Uncertainty Description.
// IEEE Transactions on Robotics.
// https://doi.org/10.1109/TRO.2022.3155880
#ifndef LIBQPEP_COVESTIMATION_H
#define LIBQPEP_COVESTIMATION_H
#include <Eigen/Core>
#include <Eigen/LU>
#include <Eigen/Dense>
#include <Eigen/Geometry> // For Quaternion
#include <Eigen/Sparse>
void csdp_cov(Eigen::Matrix4d& cov,
const Eigen::MatrixXd& F,
const Eigen::Matrix3d& cov_left,
const Eigen::Vector4d& q);
#endif //LIBQPEP_COVESTIMATION_H