EuRoC_V101.yaml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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: ""
  8. # The store file is created from the current session, if a file with the same name exists it is deleted
  9. System.SaveAtlasToFile: "V101_stereo.osa"
  10. #--------------------------------------------------------------------------------------------
  11. # Camera Parameters. Adjust them!
  12. #--------------------------------------------------------------------------------------------
  13. Camera.type: "PinHole"
  14. # Camera calibration and distortion parameters (OpenCV)
  15. Camera.fx: 435.2046959714599
  16. Camera.fy: 435.2046959714599
  17. Camera.cx: 367.4517211914062
  18. Camera.cy: 252.2008514404297
  19. Camera.k1: 0.0
  20. Camera.k2: 0.0
  21. Camera.p1: 0.0
  22. Camera.p2: 0.0
  23. Camera.bFishEye: 0
  24. Camera.width: 752
  25. Camera.height: 480
  26. # Camera frames per second
  27. Camera.fps: 20.0
  28. # stereo baseline times fx
  29. Camera.bf: 47.90639384423901
  30. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  31. Camera.RGB: 1
  32. # Close/Far threshold. Baseline times.
  33. ThDepth: 35.0
  34. #--------------------------------------------------------------------------------------------
  35. # Stereo Rectification. Only if you need to pre-rectify the images.
  36. # Camera.fx, .fy, etc must be the same as in LEFT.P
  37. #--------------------------------------------------------------------------------------------
  38. LEFT.height: 480
  39. LEFT.width: 752
  40. LEFT.D: !!opencv-matrix
  41. rows: 1
  42. cols: 5
  43. dt: d
  44. data:[-0.28340811, 0.07395907, 0.00019359, 1.76187114e-05, 0.0]
  45. LEFT.K: !!opencv-matrix
  46. rows: 3
  47. cols: 3
  48. dt: d
  49. data: [458.654, 0.0, 367.215, 0.0, 457.296, 248.375, 0.0, 0.0, 1.0]
  50. LEFT.R: !!opencv-matrix
  51. rows: 3
  52. cols: 3
  53. dt: d
  54. data: [0.999966347530033, -0.001422739138722922, 0.008079580483432283, 0.001365741834644127, 0.9999741760894847, 0.007055629199258132, -0.008089410156878961, -0.007044357138835809, 0.9999424675829176]
  55. LEFT.P: !!opencv-matrix
  56. rows: 3
  57. cols: 4
  58. dt: d
  59. data: [435.2046959714599, 0, 367.4517211914062, 0, 0, 435.2046959714599, 252.2008514404297, 0, 0, 0, 1, 0]
  60. RIGHT.height: 480
  61. RIGHT.width: 752
  62. RIGHT.D: !!opencv-matrix
  63. rows: 1
  64. cols: 5
  65. dt: d
  66. data:[-0.28368365, 0.07451284, -0.00010473, -3.555907e-05, 0.0]
  67. RIGHT.K: !!opencv-matrix
  68. rows: 3
  69. cols: 3
  70. dt: d
  71. data: [457.587, 0.0, 379.999, 0.0, 456.134, 255.238, 0.0, 0.0, 1]
  72. RIGHT.R: !!opencv-matrix
  73. rows: 3
  74. cols: 3
  75. dt: d
  76. data: [0.9999633526194376, -0.003625811871560086, 0.007755443660172947, 0.003680398547259526, 0.9999684752771629, -0.007035845251224894, -0.007729688520722713, 0.007064130529506649, 0.999945173484644]
  77. RIGHT.P: !!opencv-matrix
  78. rows: 3
  79. cols: 4
  80. dt: d
  81. data: [435.2046959714599, 0, 367.4517211914062, -47.90639384423901, 0, 435.2046959714599, 252.2008514404297, 0, 0, 0, 1, 0]
  82. #--------------------------------------------------------------------------------------------
  83. # ORB Parameters
  84. #--------------------------------------------------------------------------------------------
  85. # ORB Extractor: Number of features per image
  86. ORBextractor.nFeatures: 1200
  87. # ORB Extractor: Scale factor between levels in the scale pyramid
  88. ORBextractor.scaleFactor: 1.2
  89. # ORB Extractor: Number of levels in the scale pyramid
  90. ORBextractor.nLevels: 8
  91. # ORB Extractor: Fast threshold
  92. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  93. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  94. # You can lower these values if your images have low contrast
  95. ORBextractor.iniThFAST: 20
  96. ORBextractor.minThFAST: 7
  97. #--------------------------------------------------------------------------------------------
  98. # Viewer Parameters
  99. #--------------------------------------------------------------------------------------------
  100. Viewer.KeyFrameSize: 0.05
  101. Viewer.KeyFrameLineWidth: 1
  102. Viewer.GraphLineWidth: 0.9
  103. Viewer.PointSize:2
  104. Viewer.CameraSize: 0.08
  105. Viewer.CameraLineWidth: 3
  106. Viewer.ViewpointX: 0
  107. Viewer.ViewpointY: -0.7
  108. Viewer.ViewpointZ: -1.8
  109. Viewer.ViewpointF: 500