fontan commited on
Commit
1094c87
·
1 Parent(s): d484c7e

update: first auxiliary files

Browse files
settings/akaze61_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # akaze61 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.1892 # 2^0.25
8
+ FeatureExtractor.detectionTh: 0.0005
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 128.0
settings/anyFeatBin_settings.yaml ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # anyFeatBin parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.2
8
+ FeatureExtractor.detectionTh: 20.0
settings/anyFeatNonBin_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # anyFeatNonBin parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.2
8
+ FeatureExtractor.detectionTh: 20
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 128.0
settings/brisk48_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # brisk48 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.5
8
+ FeatureExtractor.detectionTh: 34.0
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 120.0
settings/kaze64_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # kaze64 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.1892 # 2^0.25
8
+ FeatureExtractor.detectionTh: 0.0005
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 0.1
settings/orb32_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # orb32 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.2
8
+ FeatureExtractor.detectionTh: 20.0
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 75.0
settings/r2d2_128_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # r2d2_128 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 1
7
+ FeatureExtractor.scaleFactor: 2.0
8
+ FeatureExtractor.detectionTh: 1.0
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 0.38f
settings/sift128_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # sift128 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 2.0
8
+ FeatureExtractor.detectionTh: 10.0
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 0.5
settings/surf64_settings.yaml ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ # surf64 parameters
4
+
5
+ # Feature Extractor
6
+ FeatureExtractor.numOctaves: 8
7
+ FeatureExtractor.scaleFactor: 1.2
8
+ FeatureExtractor.detectionTh: 100.0
9
+
10
+ # Feature Matcher
11
+ FeatureMatcher.matchingTh: 0.04
vslamlab_anyfeature_settings.yaml ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ %YAML:1.0
2
+
3
+ #--------------------------------------------------------------------------------------------
4
+ # Camera names
5
+ #--------------------------------------------------------------------------------------------
6
+ cam_mono: rgb_0
7
+
8
+ #--------------------------------------------------------------------------------------------
9
+ # ORB Parameters
10
+ #--------------------------------------------------------------------------------------------
11
+
12
+ # ORB Extractor: Number of features per image
13
+ ORBextractor.nFeatures: 1000
14
+
15
+ # ORB Extractor: Scale factor between levels in the scale pyramid
16
+ ORBextractor.scaleFactor: 1.2
17
+
18
+ # ORB Extractor: Number of levels in the scale pyramid
19
+ ORBextractor.nLevels: 8
20
+
21
+ # ORB Extractor: Fast threshold
22
+ # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
23
+ # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
24
+ # You can lower these values if your images have low contrast
25
+ ORBextractor.iniThFAST: 20
26
+ ORBextractor.minThFAST: 7
27
+
28
+ #--------------------------------------------------------------------------------------------
29
+ # Viewer Parameters
30
+ #--------------------------------------------------------------------------------------------
31
+ Viewer.KeyFrameSize: 0.05
32
+ Viewer.KeyFrameLineWidth: 1
33
+ Viewer.GraphLineWidth: 0.9
34
+ Viewer.PointSize: 2
35
+ Viewer.CameraSize: 0.08
36
+ Viewer.CameraLineWidth: 3
37
+ Viewer.ViewpointX: 0
38
+ Viewer.ViewpointY: -0.7
39
+ Viewer.ViewpointZ: -1.8
40
+ Viewer.ViewpointF: 500
41
+
42
+ #--------------------------------------------------------------------------------------------
43
+ # RGB-D / Stereo Parameters
44
+ #--------------------------------------------------------------------------------------------
45
+ # IR projector baseline times fx (aprox.)
46
+ Camera.bf: 40.0
47
+
48
+ # Close/Far threshold. Baseline times.
49
+ ThDepth: 40.0
50
+
51
+ # Depthmap values factor
52
+ DepthMapFactor: 5000.0