vslamlab commited on
Commit
6eef411
·
verified ·
1 Parent(s): bad579d

Upload vslamlab_orbslam2_settings.yaml

Browse files
Files changed (1) hide show
  1. vslamlab_orbslam2_settings.yaml +47 -0
vslamlab_orbslam2_settings.yaml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ #--------------------------------------------------------------------------------------------
4
+ # ORB Parameters
5
+ #--------------------------------------------------------------------------------------------
6
+
7
+ # ORB Extractor: Number of features per image
8
+ ORBextractor.nFeatures: 1000
9
+
10
+ # ORB Extractor: Scale factor between levels in the scale pyramid
11
+ ORBextractor.scaleFactor: 1.2
12
+
13
+ # ORB Extractor: Number of levels in the scale pyramid
14
+ ORBextractor.nLevels: 8
15
+
16
+ # ORB Extractor: Fast threshold
17
+ # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
18
+ # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
19
+ # You can lower these values if your images have low contrast
20
+ ORBextractor.iniThFAST: 20
21
+ ORBextractor.minThFAST: 7
22
+
23
+ #--------------------------------------------------------------------------------------------
24
+ # Viewer Parameters
25
+ #--------------------------------------------------------------------------------------------
26
+ Viewer.KeyFrameSize: 0.05
27
+ Viewer.KeyFrameLineWidth: 1
28
+ Viewer.GraphLineWidth: 0.9
29
+ Viewer.PointSize: 2
30
+ Viewer.CameraSize: 0.08
31
+ Viewer.CameraLineWidth: 3
32
+ Viewer.ViewpointX: 0
33
+ Viewer.ViewpointY: -0.7
34
+ Viewer.ViewpointZ: -1.8
35
+ Viewer.ViewpointF: 500
36
+
37
+ #--------------------------------------------------------------------------------------------
38
+ # RGB-D / Stereo Parameters
39
+ #--------------------------------------------------------------------------------------------
40
+ # IR projector baseline times fx (aprox.)
41
+ Camera.bf: 40.0
42
+
43
+ # Close/Far threshold. Baseline times.
44
+ ThDepth: 40.0
45
+
46
+ # Depthmap values factor
47
+ DepthMapFactor: 5000.0