fontan commited on
Commit
9625742
·
1 Parent(s): 326da62

update: conda package auxiliary files

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