vslamlab commited on
Commit
5afed61
·
verified ·
1 Parent(s): be361f1

Upload vslamlab_orbslam3_settings.yaml

Browse files
Files changed (1) hide show
  1. vslamlab_orbslam3_settings.yaml +38 -0
vslamlab_orbslam3_settings.yaml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ File.version: "1.0"
4
+
5
+ #--------------------------------------------------------------------------------------------
6
+ # ORB Parameters
7
+ #--------------------------------------------------------------------------------------------
8
+
9
+ # ORB Extractor: Number of features per image
10
+ ORBextractor.nFeatures: 1000
11
+
12
+ # ORB Extractor: Scale factor between levels in the scale pyramid
13
+ ORBextractor.scaleFactor: 1.2
14
+
15
+ # ORB Extractor: Number of levels in the scale pyramid
16
+ ORBextractor.nLevels: 8
17
+
18
+ # ORB Extractor: Fast threshold
19
+ # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
20
+ # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
21
+ # You can lower these values if your images have low contrast
22
+ ORBextractor.iniThFAST: 20
23
+ ORBextractor.minThFAST: 7
24
+
25
+ #--------------------------------------------------------------------------------------------
26
+ # Viewer Parameters
27
+ #--------------------------------------------------------------------------------------------
28
+ Viewer.KeyFrameSize: 0.05
29
+ Viewer.KeyFrameLineWidth: 1.0
30
+ Viewer.GraphLineWidth: 0.9
31
+ Viewer.PointSize: 2.0
32
+ Viewer.CameraSize: 0.08
33
+ Viewer.CameraLineWidth: 3.0
34
+ Viewer.ViewpointX: 0.0
35
+ Viewer.ViewpointY: -0.7
36
+ Viewer.ViewpointZ: -3.5 # -1.8
37
+ Viewer.ViewpointF: 500.0
38
+