TUM-VI.yaml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "KannalaBrandt8"
  7. # Camera calibration and distortion parameters (OpenCV)
  8. Camera1.fx: 190.978477
  9. Camera1.fy: 190.973307
  10. Camera1.cx: 254.931706
  11. Camera1.cy: 256.897442
  12. # Equidistant distortion 0.0034823894022493434, 0.0007150348452162257, -0.0020532361418706202, 0.00020293673591811182
  13. #Camera.bFishEye: 1
  14. Camera1.k1: 0.003482389402
  15. Camera1.k2: 0.000715034845
  16. Camera1.k3: -0.002053236141
  17. Camera1.k4: 0.000202936736
  18. # Camera resolution
  19. Camera.width: 512
  20. Camera.height: 512
  21. # Camera frames per second
  22. Camera.fps: 20
  23. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  24. Camera.RGB: 1
  25. # Transformation from body-frame (imu) to camera
  26. IMU.T_b_c1: !!opencv-matrix
  27. rows: 4
  28. cols: 4
  29. dt: f
  30. data: [-0.9995250378696743, 0.0075019185074052044, -0.02989013031643309, 0.045574835649698026,
  31. 0.029615343885863205, -0.03439736061393144, -0.998969345370175, -0.071161801837997044,
  32. -0.008522328211654736, -0.9993800792498829, 0.03415885127385616, -0.044681254117144367,
  33. 0.0, 0.0, 0.0, 1.0]
  34. # IMU noise (Use those from VINS-mono)
  35. IMU.NoiseGyro: 0.00016 # rad/s^0.5
  36. IMU.NoiseAcc: 0.0028 # m/s^1.5
  37. IMU.GyroWalk: 0.000022 # rad/s^1.5
  38. IMU.AccWalk: 0.00086 # m/s^2.5
  39. IMU.Frequency: 200.0
  40. #--------------------------------------------------------------------------------------------
  41. # ORB Parameters
  42. #--------------------------------------------------------------------------------------------
  43. # ORB Extractor: Number of features per image
  44. ORBextractor.nFeatures: 1500 # Tested with 1250
  45. # ORB Extractor: Scale factor between levels in the scale pyramid
  46. ORBextractor.scaleFactor: 1.2
  47. # ORB Extractor: Number of levels in the scale pyramid
  48. ORBextractor.nLevels: 8
  49. # ORB Extractor: Fast threshold
  50. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  51. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  52. # You can lower these values if your images have low contrast
  53. ORBextractor.iniThFAST: 20
  54. ORBextractor.minThFAST: 7
  55. #--------------------------------------------------------------------------------------------
  56. # Viewer Parameters
  57. #--------------------------------------------------------------------------------------------
  58. Viewer.KeyFrameSize: 0.05
  59. Viewer.KeyFrameLineWidth: 1.0
  60. Viewer.GraphLineWidth: 0.9
  61. Viewer.PointSize: 2.0
  62. Viewer.CameraSize: 0.08
  63. Viewer.CameraLineWidth: 3.0
  64. Viewer.ViewpointX: 0.0
  65. Viewer.ViewpointY: -0.7
  66. Viewer.ViewpointZ: -3.5
  67. Viewer.ViewpointF: 500.0