1GRAPH-SLAM(1) Mobile Robot Programming Toolkit - MRPT GRAPH-SLAM(1)
2
3
4
6 graph-slam - Command-line Graph-SLAM hub application
7
9 graph-slam [--info] [--dijkstra] [--levmarq] [--no-span]
10 [--initial-lambda <val>] [--max-iters <N>] [-q] [--view]
11 [--3d] [--2d] [-o <result.graph>] -i <test.graph> [--]
12 [--version] [-h]
13
15 View Dijkstra-based spanning tree coordinates estimation of a 2D graph
16 file
17
18 graph-slam --2d --dijkstra --view -i in.graph
19
20 Visualization of a 2D (or 3D) graph file
21
22 graph-slam --2d [or --3d] --view -i in.graph
23
24 Levenberg-Marquartd optimization of a 3D graph and visualize result
25
26 graph-slam --3d --levmarq --view -i in.graph
27
29 graph-slam is a command-line application to visualize pose constraint
30 graphs and execute Graph-SLAM methods on them.
31
32 These are the supported arguments and operations:
33
34 --info
35 Op: Loads the graph and displays statistics and information on it.
36
37
38 --dijkstra
39 Op: Executes CNetworkOfPoses::dijkstra_nodes_estimate() to estimate
40 the global pose of nodes from a Dijkstra tree and the edge relative
41 poses.
42
43 Can be used together with: --view, --output
44
45 --levmarq
46 Op: Optimizes the graph with sparse Levenberg-Marquartd using global
47 coordinates (via mrpt::graphslam::optimize_graph_spa_levmarq).
48
49 Can be used together with: --view, --output, --max-iters, --no-span,
50 --initial-lambda
51
52 --no-span
53 Don't use dijkstra initial spanning tree guess (optional)
54
55 --initial-lambda <val>
56 Initial lambda parameter (optional, lev-marq)
57
58 --max-iters <N>
59 Maximum number of iterations (optional)
60
61 -q, --quiet
62 Terse output
63
64 --view
65 Op: Visualize the graph in a 3D view. If used alone, represent VERTEX2
66 or VERTEX3 poses directly as stored in the input file. If used
67 together with another operation, the final obtained graph after the
68 operation will be shown, not the input original one.
69
70
71 --3d
72 Use 3D poses (Must use exactly one of --2d and --3d)
73
74 --2d
75 Use 2D poses (Must use exactly one of --2d and --3d)
76
77 -o <result.graph>, --output <result.graph>
78 Output file (optional) (*.graph,*.graphbin)
79
80 -i <test.graph>, --input <test.graph>
81 (required) Input file (required) (*.graph,*.graphbin)
82
83 --, --ignore_rest
84 Ignores the rest of the labeled arguments following this flag.
85
86 --version
87 Displays version information and exits.
88
89 -h, --help
90 Displays usage information and exits.
91
93 Please report bugs at https://github.com/MRPT/mrpt/issues
94
96 graph-slam is part of the Mobile Robot Programming Toolkit (MRPT), and
97 was originally written by the MAPIR laboratory (University of Malaga).
98
99 This manual page was written by Jose Luis Blanco
100 <joseluisblancoc@gmail.com>.
101
103 This program is free software; you can redistribute it and/or modify it
104 under the terms of the BSD License.
105
106 On Debian GNU/Linux systems, the complete text of the BSD License can
107 be found in `/usr/share/common-licenses/BSD'.
108
109
110
111perl v5.36.1 2023-06-12 GRAPH-SLAM(1)