Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
c
d
e
f
g
i
k
l
m
n
p
q
r
s
t
u
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Classes
Class List
Class Hierarchy
Class Members
All
!
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
!
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Enumerations
a
b
c
d
f
k
l
m
n
o
p
r
s
t
v
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Related Functions
:
a
b
c
d
e
g
h
i
l
m
n
o
p
r
s
t
u
v
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
x
z
Enumerations
Enumerator
b
c
e
f
g
i
l
m
n
o
p
r
s
t
u
v
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
doc
Code
doc/Code/Pose2SLAMExample.cpp
Go to the documentation of this file.
1
NonlinearFactorGraph
graph
;
2
noiseModel::Diagonal::shared_ptr
priorNoise
=
3
noiseModel::Diagonal::Sigmas(
Vector3
(0.3, 0.3, 0.1));
4
graph
.addPrior(1, Pose2(0, 0, 0),
priorNoise
);
5
6
// Add odometry factors
7
noiseModel::Diagonal::shared_ptr
model
=
8
noiseModel::Diagonal::Sigmas(
Vector3
(0.2, 0.2, 0.1));
9
graph
.add(BetweenFactor<Pose2>(1, 2, Pose2(2, 0, 0 ),
model
));
10
graph
.add(BetweenFactor<Pose2>(2, 3, Pose2(2, 0,
M_PI_2
),
model
));
11
graph
.add(BetweenFactor<Pose2>(3, 4, Pose2(2, 0,
M_PI_2
),
model
));
12
graph
.add(BetweenFactor<Pose2>(4, 5, Pose2(2, 0,
M_PI_2
),
model
));
13
14
// Add the loop closure constraint
15
graph
.add(BetweenFactor<Pose2>(5, 2, Pose2(2, 0,
M_PI_2
),
model
));
16
gtsam::Vector3
Eigen::Vector3d Vector3
Definition:
Vector.h:44
priorNoise
noiseModel::Diagonal::shared_ptr priorNoise
Definition:
doc/Code/Pose2SLAMExample.cpp:2
model
noiseModel::Diagonal::shared_ptr model
Definition:
doc/Code/Pose2SLAMExample.cpp:7
M_PI_2
#define M_PI_2
Definition:
mconf.h:118
graph
NonlinearFactorGraph graph
Definition:
doc/Code/Pose2SLAMExample.cpp:1
gtsam
Author(s):
autogenerated on Wed Mar 19 2025 03:02:56