orb_slam3_details/Examples/Stereo/KITTI00-02.yaml

64 lines
1.9 KiB
YAML
Raw Normal View History

2020-12-01 11:58:17 +08:00
%YAML:1.0
#--------------------------------------------------------------------------------------------
# Camera Parameters. Adjust them!
#--------------------------------------------------------------------------------------------
2022-03-28 21:20:28 +08:00
File.version: "1.0"
2020-12-01 11:58:17 +08:00
2022-03-28 21:20:28 +08:00
Camera.type: "Rectified"
2020-12-01 11:58:17 +08:00
2022-03-28 21:20:28 +08:00
# Camera calibration and distortion parameters (OpenCV)
Camera1.fx: 718.856
Camera1.fy: 718.856
Camera1.cx: 607.1928
Camera1.cy: 185.2157
2020-12-01 11:58:17 +08:00
Camera.width: 1241
Camera.height: 376
# Camera frames per second
2022-03-28 21:20:28 +08:00
Camera.fps: 10
2020-12-01 11:58:17 +08:00
2022-03-28 21:20:28 +08:00
Stereo.b: 0.53716
2020-12-01 11:58:17 +08:00
# Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
Camera.RGB: 1
# Close/Far threshold. Baseline times.
2022-03-28 21:20:28 +08:00
Stereo.ThDepth: 35.0
2020-12-01 11:58:17 +08:00
#--------------------------------------------------------------------------------------------
# ORB Parameters
#--------------------------------------------------------------------------------------------
# ORB Extractor: Number of features per image
ORBextractor.nFeatures: 2000
# ORB Extractor: Scale factor between levels in the scale pyramid
ORBextractor.scaleFactor: 1.2
# ORB Extractor: Number of levels in the scale pyramid
ORBextractor.nLevels: 8
# ORB Extractor: Fast threshold
# Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
# Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
# You can lower these values if your images have low contrast
ORBextractor.iniThFAST: 20
ORBextractor.minThFAST: 7
#--------------------------------------------------------------------------------------------
# Viewer Parameters
#--------------------------------------------------------------------------------------------
Viewer.KeyFrameSize: 0.6
2022-03-28 21:20:28 +08:00
Viewer.KeyFrameLineWidth: 2.0
Viewer.GraphLineWidth: 1.0
Viewer.PointSize: 2.0
2020-12-01 11:58:17 +08:00
Viewer.CameraSize: 0.7
2022-03-28 21:20:28 +08:00
Viewer.CameraLineWidth: 3.0
Viewer.ViewpointX: 0.0
2022-05-28 15:05:22 +08:00
Viewer.ViewpointY: -100.0
2020-12-01 11:58:17 +08:00
Viewer.ViewpointZ: -0.1
2022-03-28 21:20:28 +08:00
Viewer.ViewpointF: 2000.0
2020-12-01 11:58:17 +08:00