fontan commited on
Commit
6207714
·
1 Parent(s): cbe0c6c

update: first aux files

Browse files
Files changed (2) hide show
  1. .gitignore +2 -0
  2. vslamlab_orbslam3_settings.yaml +52 -0
.gitignore ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ # Ignore build files and user-specific files
2
+ Vocabulary/
vslamlab_orbslam3_settings.yaml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML 1.2
2
+ ---
3
+ #--------------------------------------------------------------------------------------------
4
+ # Sensor names
5
+ #--------------------------------------------------------------------------------------------
6
+ cam_mono: rgb_0
7
+ cam_rgbd: rgb_0
8
+ cam_stereo: [rgb_0, rgb_1]
9
+ imu: imu_0
10
+
11
+ #--------------------------------------------------------------------------------------------
12
+ File.version: "1.0"
13
+
14
+ # Close/Far threshold. Baseline times.
15
+ RGBD.ThDepth: 40.0
16
+ RGBD.b: 0.07732
17
+ Stereo.ThDepth: 60.0
18
+
19
+ #--------------------------------------------------------------------------------------------
20
+ # ORB Parameters
21
+ #--------------------------------------------------------------------------------------------
22
+
23
+ # ORB Extractor: Number of features per image
24
+ ORBextractor.nFeatures: 1000
25
+
26
+ # ORB Extractor: Scale factor between levels in the scale pyramid
27
+ ORBextractor.scaleFactor: 1.2
28
+
29
+ # ORB Extractor: Number of levels in the scale pyramid
30
+ ORBextractor.nLevels: 8
31
+
32
+ # ORB Extractor: Fast threshold
33
+ # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
34
+ # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
35
+ # You can lower these values if your images have low contrast
36
+ ORBextractor.iniThFAST: 20
37
+ ORBextractor.minThFAST: 7
38
+
39
+ #--------------------------------------------------------------------------------------------
40
+ # Viewer Parameters
41
+ #--------------------------------------------------------------------------------------------
42
+ Viewer.KeyFrameSize: 0.05
43
+ Viewer.KeyFrameLineWidth: 1.0
44
+ Viewer.GraphLineWidth: 0.9
45
+ Viewer.PointSize: 2.0
46
+ Viewer.CameraSize: 0.08
47
+ Viewer.CameraLineWidth: 3.0
48
+ Viewer.ViewpointX: 0.0
49
+ Viewer.ViewpointY: -0.7
50
+ Viewer.ViewpointZ: -1.8
51
+ Viewer.ViewpointF: 500.0
52
+