EuRoC.yaml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # System config
  4. #--------------------------------------------------------------------------------------------
  5. # When the variables are commented, the system doesn't load a previous session or not store the current one
  6. # If the LoadFile doesn't exist, the system give a message and create a new Atlas from scratch
  7. #System.LoadAtlasFromFile: "Session_MH01_MH02_MH03_Stereo60_Pseudo"
  8. # The store file is created from the current session, if a file with the same name exists it is deleted
  9. #System.SaveAtlasToFile: "Session_MH01_MH02_MH03_Stereo60_Pseudo"
  10. #--------------------------------------------------------------------------------------------
  11. # Camera Parameters. Adjust them!
  12. #--------------------------------------------------------------------------------------------
  13. File.version: "1.0"
  14. Camera.type: "PinHole"
  15. # Camera calibration and distortion parameters (OpenCV)
  16. Camera1.fx: 458.654
  17. Camera1.fy: 457.296
  18. Camera1.cx: 367.215
  19. Camera1.cy: 248.375
  20. Camera1.k1: -0.28340811
  21. Camera1.k2: 0.07395907
  22. Camera1.p1: 0.00019359
  23. Camera1.p2: 1.76187114e-05
  24. Camera2.fx: 457.587
  25. Camera2.fy: 456.134
  26. Camera2.cx: 379.999
  27. Camera2.cy: 255.238
  28. Camera2.k1: -0.28368365
  29. Camera2.k2: 0.07451284
  30. Camera2.p1: -0.00010473
  31. Camera2.p2: -3.55590700e-05
  32. Camera.width: 752
  33. Camera.height: 480
  34. # Camera frames per second
  35. Camera.fps: 20
  36. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  37. Camera.RGB: 1
  38. # Close/Far threshold. Baseline times.
  39. Stereo.ThDepth: 60.0
  40. Stereo.T_c1_c2: !!opencv-matrix
  41. rows: 4
  42. cols: 4
  43. dt: f
  44. data: [0.999997256477797,-0.002317135723275,-0.000343393120620,0.110074137800478,
  45. 0.002312067192432,0.999898048507103,-0.014090668452683,-0.000156612054392,
  46. 0.000376008102320,0.014089835846691,0.999900662638081,0.000889382785432,
  47. 0,0,0,1.000000000000000]
  48. # Transformation from camera 0 to body-frame (imu)
  49. IMU.T_b_c1: !!opencv-matrix
  50. rows: 4
  51. cols: 4
  52. dt: f
  53. data: [0.0148655429818, -0.999880929698, 0.00414029679422, -0.0216401454975,
  54. 0.999557249008, 0.0149672133247, 0.025715529948, -0.064676986768,
  55. -0.0257744366974, 0.00375618835797, 0.999660727178, 0.00981073058949,
  56. 0.0, 0.0, 0.0, 1.0]
  57. # IMU noise
  58. IMU.NoiseGyro: 1.7e-04 # 1.6968e-04
  59. IMU.NoiseAcc: 2.0e-03 # 2.0000e-3
  60. IMU.GyroWalk: 1.9393e-05
  61. IMU.AccWalk: 3.e-03 # 3.0000e-3
  62. IMU.Frequency: 200.0
  63. #--------------------------------------------------------------------------------------------
  64. # ORB Parameters
  65. #--------------------------------------------------------------------------------------------
  66. # ORB Extractor: Number of features per image
  67. ORBextractor.nFeatures: 1200
  68. # ORB Extractor: Scale factor between levels in the scale pyramid
  69. ORBextractor.scaleFactor: 1.2
  70. # ORB Extractor: Number of levels in the scale pyramid
  71. ORBextractor.nLevels: 8
  72. # ORB Extractor: Fast threshold
  73. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  74. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  75. # You can lower these values if your images have low contrast
  76. ORBextractor.iniThFAST: 20
  77. ORBextractor.minThFAST: 7
  78. #--------------------------------------------------------------------------------------------
  79. # Viewer Parameters
  80. #--------------------------------------------------------------------------------------------
  81. Viewer.KeyFrameSize: 0.05
  82. Viewer.KeyFrameLineWidth: 1.0
  83. Viewer.GraphLineWidth: 0.9
  84. Viewer.PointSize: 2.0
  85. Viewer.CameraSize: 0.08
  86. Viewer.CameraLineWidth: 3.0
  87. Viewer.ViewpointX: 0.0
  88. Viewer.ViewpointY: -0.7
  89. Viewer.ViewpointZ: -1.8
  90. Viewer.ViewpointF: 500.0
  91. Viewer.imageViewScale: 1.0