EuRoC.yaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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: 458.654
  8. Camera.fy: 457.296
  9. Camera.cx: 367.215
  10. Camera.cy: 248.375
  11. Camera.k1: -0.28340811
  12. Camera.k2: 0.07395907
  13. Camera.p1: 0.00019359
  14. Camera.p2: 1.76187114e-05
  15. Camera.width: 752
  16. Camera.height: 480
  17. # Camera frames per second
  18. Camera.fps: 20.0
  19. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  20. Camera.RGB: 1
  21. #--------------------------------------------------------------------------------------------
  22. # ORB Parameters
  23. #--------------------------------------------------------------------------------------------
  24. # ORB Extractor: Number of features per image
  25. ORBextractor.nFeatures: 1000
  26. # ORB Extractor: Scale factor between levels in the scale pyramid
  27. ORBextractor.scaleFactor: 1.2
  28. # ORB Extractor: Number of levels in the scale pyramid
  29. ORBextractor.nLevels: 8
  30. # ORB Extractor: Fast threshold
  31. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  32. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  33. # You can lower these values if your images have low contrast
  34. ORBextractor.iniThFAST: 20
  35. ORBextractor.minThFAST: 7
  36. #--------------------------------------------------------------------------------------------
  37. # Viewer Parameters
  38. #---------------------------------------------------------------------------------------------
  39. Viewer.KeyFrameSize: 0.05
  40. Viewer.KeyFrameLineWidth: 1
  41. Viewer.GraphLineWidth: 0.9
  42. Viewer.PointSize: 2
  43. Viewer.CameraSize: 0.08
  44. Viewer.CameraLineWidth: 3
  45. Viewer.ViewpointX: 0
  46. Viewer.ViewpointY: -0.7
  47. Viewer.ViewpointZ: -1.8
  48. Viewer.ViewpointF: 500