Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

G2o parsing code incorrectly names a variable as covariance instead of info matrix. #23

Closed
tonioteran opened this issue Feb 17, 2022 · 1 comment

Comments

@tonioteran
Copy link
Contributor

G2o file format uses the information matrix (e.g., for SLAM 2D https://github.com/RainerKuemmerle/g2o/wiki/File-Format-SLAM-2D).

In the utils here, the info matrix is incorrectly named TranCov:

Eigen::Matrix<Scalar, 2, 2> TranCov;

which, when creating for example tau, makes it read as tau = d / tr(cov^-1), when actually we want tau = d / tr(cov).

@tonioteran
Copy link
Contributor Author

Excellent, no more confusion now (:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant