TUM1.yaml 1.9 KB

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