EuRoC_MH03.yaml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Session 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: "MH01_to_MH02_mono_inertial.osa"
  8. # The store file is created from the current session, if a file with the same name exists it is deleted
  9. System.SaveAtlasToFile: "MH01_to_MH03_mono_inertial.osa"
  10. #--------------------------------------------------------------------------------------------
  11. # Camera Parameters. Adjust them!
  12. #--------------------------------------------------------------------------------------------
  13. Camera.type: "PinHole"
  14. # Camera calibration and distortion parameters (OpenCV)
  15. Camera.fx: 458.654
  16. Camera.fy: 457.296
  17. Camera.cx: 367.215
  18. Camera.cy: 248.375
  19. Camera.k1: -0.28340811
  20. Camera.k2: 0.07395907
  21. Camera.p1: 0.00019359
  22. Camera.p2: 1.76187114e-05
  23. # Camera resolution
  24. Camera.width: 752
  25. Camera.height: 480
  26. # Camera frames per second
  27. Camera.fps: 20.0
  28. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  29. Camera.RGB: 1
  30. # Transformation from camera to body-frame (imu)
  31. Tbc: !!opencv-matrix
  32. rows: 4
  33. cols: 4
  34. dt: f
  35. data: [0.0148655429818, -0.999880929698, 0.00414029679422, -0.0216401454975,
  36. 0.999557249008, 0.0149672133247, 0.025715529948, -0.064676986768,
  37. -0.0257744366974, 0.00375618835797, 0.999660727178, 0.00981073058949,
  38. 0.0, 0.0, 0.0, 1.0]
  39. # IMU noise
  40. IMU.NoiseGyro: 1.7e-4 #1.6968e-04
  41. IMU.NoiseAcc: 2.0000e-3 #2.0e-3
  42. IMU.GyroWalk: 1.9393e-05
  43. IMU.AccWalk: 3.0000e-03 # 3e-03
  44. IMU.Frequency: 200
  45. #--------------------------------------------------------------------------------------------
  46. # ORB Parameters
  47. #--------------------------------------------------------------------------------------------
  48. # ORB Extractor: Number of features per image
  49. ORBextractor.nFeatures: 1000 # 1000
  50. # ORB Extractor: Scale factor between levels in the scale pyramid
  51. ORBextractor.scaleFactor: 1.2
  52. # ORB Extractor: Number of levels in the scale pyramid
  53. ORBextractor.nLevels: 8
  54. # ORB Extractor: Fast threshold
  55. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  56. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  57. # You can lower these values if your images have low contrast
  58. ORBextractor.iniThFAST: 20
  59. ORBextractor.minThFAST: 7
  60. #--------------------------------------------------------------------------------------------
  61. # Viewer Parameters
  62. #--------------------------------------------------------------------------------------------
  63. Viewer.KeyFrameSize: 0.05
  64. Viewer.KeyFrameLineWidth: 1
  65. Viewer.GraphLineWidth: 0.9
  66. Viewer.PointSize:2
  67. Viewer.CameraSize: 0.08
  68. Viewer.CameraLineWidth: 3
  69. Viewer.ViewpointX: 0
  70. Viewer.ViewpointY: -0.7
  71. Viewer.ViewpointZ: -3.5 # -1.8
  72. Viewer.ViewpointF: 500