Skip to content

Commit f0cb46f

Browse files
authored
Add files via upload
1 parent 27683c3 commit f0cb46f

File tree

19 files changed

+27458
-0
lines changed

19 files changed

+27458
-0
lines changed

config/orb/save_localmap.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
orb_setting:
2+
vocabulary: ../data/Vocabulary/ORBvoc.txt
3+
setting: ../config/orb_ori/KITTI00-02.yaml
4+
5+
io:
6+
KeyFrameDir: ../KITTI-00/KeyFrames/
7+
MapFile: ../KITTI-00/Map.xml
8+
SavePath: ../KITTI-00/orb_map_00.pcd

config/orb_ori/EuRoC.yaml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
%YAML:1.0
2+
3+
#--------------------------------------------------------------------------------------------
4+
# Camera Parameters. Adjust them!
5+
#--------------------------------------------------------------------------------------------
6+
7+
# Camera calibration and distortion parameters (OpenCV)
8+
Camera.fx: 458.654
9+
Camera.fy: 457.296
10+
Camera.cx: 367.215
11+
Camera.cy: 248.375
12+
13+
Camera.k1: -0.28340811
14+
Camera.k2: 0.07395907
15+
Camera.p1: 0.00019359
16+
Camera.p2: 1.76187114e-05
17+
18+
# Camera frames per second
19+
Camera.fps: 20.0
20+
21+
# Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
22+
Camera.RGB: 1
23+
24+
#--------------------------------------------------------------------------------------------
25+
# ORB Parameters
26+
#--------------------------------------------------------------------------------------------
27+
28+
# ORB Extractor: Number of features per image
29+
ORBextractor.nFeatures: 1000
30+
31+
# ORB Extractor: Scale factor between levels in the scale pyramid
32+
ORBextractor.scaleFactor: 1.2
33+
34+
# ORB Extractor: Number of levels in the scale pyramid
35+
ORBextractor.nLevels: 8
36+
37+
# ORB Extractor: Fast threshold
38+
# Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
39+
# Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
40+
# You can lower these values if your images have low contrast
41+
ORBextractor.iniThFAST: 20
42+
ORBextractor.minThFAST: 7
43+
44+
#--------------------------------------------------------------------------------------------
45+
# Viewer Parameters
46+
#---------------------------------------------------------------------------------------------
47+
Viewer.KeyFrameSize: 0.05
48+
Viewer.KeyFrameLineWidth: 1
49+
Viewer.GraphLineWidth: 0.9
50+
Viewer.PointSize:2
51+
Viewer.CameraSize: 0.08
52+
Viewer.CameraLineWidth: 3
53+
Viewer.ViewpointX: 0
54+
Viewer.ViewpointY: -0.7
55+
Viewer.ViewpointZ: -1.8
56+
Viewer.ViewpointF: 500
57+

0 commit comments

Comments
 (0)