File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,19 @@ downward looking camera. In the end, several loop closure constraints
20
20
are identified and 7 DoF optimisation is performed.
21
21
22
22
23
- Version 1.0 of RobotVision offers "Bundle Adjustment" (bundle_adjuster.h)
24
- and "Pose-graph Optimisation" (graph_optimizer.h) among other things.
23
+ Version 1.0 of RobotVision offers Bundle Adjustment (BA) (bundle_adjuster.h)
24
+ pose-graph optimisation (graph_optimizer.h) and 2D/3D visualisation among
25
+ other things.
26
+
27
+ In order to get to know the BundleAdjuster and 3D visualisation, please have a look at
28
+ the BA toy example: "ba_demo.cpp".
29
+
30
+ Try out the following:
31
+ - "./ba_demo 0.5 0.0 0" - BA problem with no spurious matches
32
+ - "./ba_demo 0.5 0.05 0" - BA problem with 5% of spurious matches
33
+ (this should fail!)
34
+ - "./ba_demo 0.5 0.05 1" - BA problem with 5% of spurious matches, but
35
+ using a robust kernel (this should work!)
25
36
26
37
The core code of BundleAdjuster is in the method "calcFull". This method is
27
38
rather complex because of the exploitation of its underlying sparseness.
You can’t perform that action at this time.
0 commit comments