mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
348b22109a
Differential Revision: https://reviews.freebsd.org/D13610
19 lines
1.1 KiB
Plaintext
19 lines
1.1 KiB
Plaintext
g2o is an open-source C++ framework for optimizing graph-based nonlinear error
|
|
functions. g2o has been designed to be easily extensible to a wide range of
|
|
problems and a new problem typically can be specified in a few lines of code.
|
|
The current implementation provides solutions to several variants of SLAM and
|
|
BA.
|
|
|
|
A wide range of problems in robotics as well as in computer-vision involve the
|
|
minimization of a non-linear error function that can be represented as a graph.
|
|
Typical instances are simultaneous localization and mapping (SLAM) or bundle
|
|
adjustment (BA). The overall goal in these problems is to find the configuration
|
|
of parameters or state variables that maximally explain a set of measurements
|
|
affected by Gaussian noise. g2o is an open-source C++ framework for such
|
|
nonlinear least squares problems. g2o has been designed to be easily extensible
|
|
to a wide range of problems and a new problem typically can be specified in a
|
|
few lines of code. The current implementation provides solutions to several
|
|
variants of SLAM and BA.
|
|
|
|
WWW: http://openslam.org/g2o.html
|