EuRoC.yaml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. Stereo.ThDepth: 60.0
  39. Stereo.T_c1_c2: !!opencv-matrix
  40. rows: 4
  41. cols: 4
  42. dt: f
  43. data: [0.999997256477797,-0.002317135723275,-0.000343393120620,0.110074137800478,
  44. 0.002312067192432,0.999898048507103,-0.014090668452683,-0.000156612054392,
  45. 0.000376008102320,0.014089835846691,0.999900662638081,0.000889382785432,
  46. 0,0,0,1.000000000000000]
  47. #--------------------------------------------------------------------------------------------
  48. # ORB Parameters
  49. #--------------------------------------------------------------------------------------------
  50. # ORB Extractor: Number of features per image
  51. ORBextractor.nFeatures: 1200
  52. # ORB Extractor: Scale factor between levels in the scale pyramid
  53. ORBextractor.scaleFactor: 1.2
  54. # ORB Extractor: Number of levels in the scale pyramid
  55. ORBextractor.nLevels: 8
  56. # ORB Extractor: Fast threshold
  57. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  58. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  59. # You can lower these values if your images have low contrast
  60. ORBextractor.iniThFAST: 20
  61. ORBextractor.minThFAST: 7
  62. #--------------------------------------------------------------------------------------------
  63. # Viewer Parameters
  64. #--------------------------------------------------------------------------------------------
  65. Viewer.KeyFrameSize: 0.05
  66. Viewer.KeyFrameLineWidth: 1.0
  67. Viewer.GraphLineWidth: 0.9
  68. Viewer.PointSize: 2.0
  69. Viewer.CameraSize: 0.08
  70. Viewer.CameraLineWidth: 3.0
  71. Viewer.ViewpointX: 0.0
  72. Viewer.ViewpointY: -0.7
  73. Viewer.ViewpointZ: -1.8
  74. Viewer.ViewpointF: 500.0
  75. Viewer.imageViewScale: 1.0