EuRoC.yaml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. File.version: "1.0"
  14. Camera.type: "PinHole"
  15. # Camera calibration and distortion parameters (OpenCV)
  16. Camera1.fx: 458.654
  17. Camera1.fy: 457.296
  18. Camera1.cx: 367.215
  19. Camera1.cy: 248.375
  20. Camera1.k1: -0.28340811
  21. Camera1.k2: 0.07395907
  22. Camera1.p1: 0.00019359
  23. Camera1.p2: 1.76187114e-05
  24. Camera.width: 752
  25. Camera.height: 480
  26. Camera.newWidth: 600
  27. Camera.newHeight: 350
  28. # Camera frames per second
  29. Camera.fps: 20
  30. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  31. Camera.RGB: 1
  32. #--------------------------------------------------------------------------------------------
  33. # ORB Parameters
  34. #--------------------------------------------------------------------------------------------
  35. # ORB Extractor: Number of features per image
  36. ORBextractor.nFeatures: 1000
  37. # ORB Extractor: Scale factor between levels in the scale pyramid
  38. ORBextractor.scaleFactor: 1.2
  39. # ORB Extractor: Number of levels in the scale pyramid
  40. ORBextractor.nLevels: 8
  41. # ORB Extractor: Fast threshold
  42. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  43. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  44. # You can lower these values if your images have low contrast
  45. ORBextractor.iniThFAST: 20
  46. ORBextractor.minThFAST: 7
  47. #--------------------------------------------------------------------------------------------
  48. # Viewer Parameters
  49. #---------------------------------------------------------------------------------------------
  50. Viewer.KeyFrameSize: 0.05
  51. Viewer.KeyFrameLineWidth: 1.0
  52. Viewer.GraphLineWidth: 0.9
  53. Viewer.PointSize: 2.0
  54. Viewer.CameraSize: 0.08
  55. Viewer.CameraLineWidth: 3.0
  56. Viewer.ViewpointX: 0.0
  57. Viewer.ViewpointY: -0.7
  58. Viewer.ViewpointZ: -1.8
  59. Viewer.ViewpointF: 500.0