EuRoC_V201.yaml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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: "V201_monocular.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.width: 752
  24. Camera.height: 480
  25. # Camera frames per second
  26. Camera.fps: 20.0
  27. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  28. Camera.RGB: 1
  29. #--------------------------------------------------------------------------------------------
  30. # ORB Parameters
  31. #--------------------------------------------------------------------------------------------
  32. # ORB Extractor: Number of features per image
  33. ORBextractor.nFeatures: 1000
  34. # ORB Extractor: Scale factor between levels in the scale pyramid
  35. ORBextractor.scaleFactor: 1.2
  36. # ORB Extractor: Number of levels in the scale pyramid
  37. ORBextractor.nLevels: 8
  38. # ORB Extractor: Fast threshold
  39. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  40. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  41. # You can lower these values if your images have low contrast
  42. ORBextractor.iniThFAST: 20
  43. ORBextractor.minThFAST: 7
  44. #--------------------------------------------------------------------------------------------
  45. # Viewer Parameters
  46. #---------------------------------------------------------------------------------------------
  47. Viewer.KeyFrameSize: 0.05
  48. Viewer.KeyFrameLineWidth: 1
  49. Viewer.GraphLineWidth: 0.9
  50. Viewer.PointSize: 2
  51. Viewer.CameraSize: 0.08
  52. Viewer.CameraLineWidth: 3
  53. Viewer.ViewpointX: 0
  54. Viewer.ViewpointY: -0.7
  55. Viewer.ViewpointZ: -1.8
  56. Viewer.ViewpointF: 500