EuRoC.yaml 3.7 KB

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