TUM-VI_far.yaml 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 # 0.004 (VINS) # 0.00016 (TUM) # 0.00016 # rad/s^0.5
  36. IMU.NoiseAcc: 0.0028 # 0.04 (VINS) # 0.0028 (TUM) # 0.0028 # m/s^1.5
  37. IMU.GyroWalk: 0.000022 # 0.000022 (VINS and TUM) rad/s^1.5
  38. IMU.AccWalk: 0.00086 # 0.0004 (VINS) # 0.00086 # 0.00086 # m/s^2.5
  39. IMU.Frequency: 200
  40. System.thFarPoints: 20.0
  41. #--------------------------------------------------------------------------------------------
  42. # ORB Parameters
  43. #--------------------------------------------------------------------------------------------
  44. # ORB Extractor: Number of features per image
  45. ORBextractor.nFeatures: 1250 # Tested with 1250
  46. # ORB Extractor: Scale factor between levels in the scale pyramid
  47. ORBextractor.scaleFactor: 1.2
  48. # ORB Extractor: Number of levels in the scale pyramid
  49. ORBextractor.nLevels: 8
  50. # ORB Extractor: Fast threshold
  51. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  52. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  53. # You can lower these values if your images have low contrast
  54. ORBextractor.iniThFAST: 20
  55. ORBextractor.minThFAST: 7
  56. #--------------------------------------------------------------------------------------------
  57. # Viewer Parameters
  58. #--------------------------------------------------------------------------------------------
  59. Viewer.KeyFrameSize: 0.05
  60. Viewer.KeyFrameLineWidth: 1.0
  61. Viewer.GraphLineWidth: 0.9
  62. Viewer.PointSize: 2.0
  63. Viewer.CameraSize: 0.08
  64. Viewer.CameraLineWidth: 3.0
  65. Viewer.ViewpointX: 0.0
  66. Viewer.ViewpointY: -0.7
  67. Viewer.ViewpointZ: -3.5
  68. Viewer.ViewpointF: 500.0