Skip to content

Commit 97aa87c

Browse files
authored
Add files via upload
1 parent 92d91e9 commit 97aa87c

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

config/orb_ori/KITTI19.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: 718.8560
9+
Camera.fy: 718.8560
10+
Camera.cx: 607.1928
11+
Camera.cy: 185.2157
12+
13+
Camera.k1: 0.0
14+
Camera.k2: 0.0
15+
Camera.p1: 0.0
16+
Camera.p2: 0.0
17+
18+
# Camera frames per second
19+
Camera.fps: 10.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: 2000
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.1
48+
Viewer.KeyFrameLineWidth: 1
49+
Viewer.GraphLineWidth: 1
50+
Viewer.PointSize: 2
51+
Viewer.CameraSize: 0.15
52+
Viewer.CameraLineWidth: 2
53+
Viewer.ViewpointX: 0
54+
Viewer.ViewpointY: -10
55+
Viewer.ViewpointZ: -0.1
56+
Viewer.ViewpointF: 2000
57+

0 commit comments

Comments
 (0)