EuRoC.yaml 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_Mono"
  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_Mono"
  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. # Image scale, it changes the image size to be processed (<1.0: reduce, >1.0: increase)
  30. Camera.imageScale: 1.0
  31. #--------------------------------------------------------------------------------------------
  32. # ORB Parameters
  33. #--------------------------------------------------------------------------------------------
  34. # ORB Extractor: Number of features per image
  35. ORBextractor.nFeatures: 1000
  36. # ORB Extractor: Scale factor between levels in the scale pyramid
  37. ORBextractor.scaleFactor: 1.2
  38. # ORB Extractor: Number of levels in the scale pyramid
  39. ORBextractor.nLevels: 8
  40. # ORB Extractor: Fast threshold
  41. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  42. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  43. # You can lower these values if your images have low contrast
  44. ORBextractor.iniThFAST: 20
  45. ORBextractor.minThFAST: 7
  46. #--------------------------------------------------------------------------------------------
  47. # Viewer Parameters
  48. #---------------------------------------------------------------------------------------------
  49. Viewer.KeyFrameSize: 0.05
  50. Viewer.KeyFrameLineWidth: 1
  51. Viewer.GraphLineWidth: 0.9
  52. Viewer.PointSize: 2
  53. Viewer.CameraSize: 0.08
  54. Viewer.CameraLineWidth: 3
  55. Viewer.ViewpointX: 0
  56. Viewer.ViewpointY: -0.7
  57. Viewer.ViewpointZ: -1.8
  58. Viewer.ViewpointF: 500
  59. Viewer.imageViewScale: 2