TUM-VI_far.yaml 3.5 KB

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