TUM3.yaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. # Camera calibration and distortion parameters (OpenCV)
  6. Camera.fx: 535.4
  7. Camera.fy: 539.2
  8. Camera.cx: 320.1
  9. Camera.cy: 247.6
  10. Camera.k1: 0.0
  11. Camera.k2: 0.0
  12. Camera.p1: 0.0
  13. Camera.p2: 0.0
  14. # Camera frames per second
  15. Camera.fps: 30.0
  16. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  17. Camera.RGB: 1
  18. #--------------------------------------------------------------------------------------------
  19. # ORB Parameters
  20. #--------------------------------------------------------------------------------------------
  21. # ORB Extractor: Number of features per image
  22. ORBextractor.nFeatures: 1000
  23. # ORB Extractor: Scale factor between levels in the scale pyramid
  24. ORBextractor.scaleFactor: 1.2
  25. # ORB Extractor: Number of levels in the scale pyramid
  26. ORBextractor.nLevels: 8
  27. # ORB Extractor: Fast threshold
  28. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  29. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  30. # You can lower these values if your images have low contrast
  31. ORBextractor.iniThFAST: 20
  32. ORBextractor.minThFAST: 7
  33. #--------------------------------------------------------------------------------------------
  34. # Viewer Parameters
  35. #--------------------------------------------------------------------------------------------
  36. Viewer.KeyFrameSize: 0.05
  37. Viewer.KeyFrameLineWidth: 1
  38. Viewer.GraphLineWidth: 0.9
  39. Viewer.PointSize:2
  40. Viewer.CameraSize: 0.08
  41. Viewer.CameraLineWidth: 3
  42. Viewer.ViewpointX: 0
  43. Viewer.ViewpointY: -0.7
  44. Viewer.ViewpointZ: -1.8
  45. Viewer.ViewpointF: 500