TUM2.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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: 520.908620
  8. Camera.fy: 521.007327
  9. Camera.cx: 325.141442
  10. Camera.cy: 249.701764
  11. Camera.k1: 0.231222
  12. Camera.k2: -0.784899
  13. Camera.p1: -0.003257
  14. Camera.p2: -0.000105
  15. Camera.k3: 0.917205
  16. Camera.width: 640
  17. Camera.height: 480
  18. # Camera frames per second
  19. Camera.fps: 30.0
  20. # IR projector baseline times fx (aprox.)
  21. Camera.bf: 40.0
  22. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  23. Camera.RGB: 1
  24. # Close/Far threshold. Baseline times.
  25. ThDepth: 40.0
  26. # Deptmap values factor
  27. DepthMapFactor: 5208.0
  28. Camera.width: 640
  29. Camera.height: 480
  30. #--------------------------------------------------------------------------------------------
  31. # ORB Parameters
  32. #--------------------------------------------------------------------------------------------
  33. # ORB Extractor: Number of features per image
  34. ORBextractor.nFeatures: 1000
  35. # ORB Extractor: Scale factor between levels in the scale pyramid
  36. ORBextractor.scaleFactor: 1.2
  37. # ORB Extractor: Number of levels in the scale pyramid
  38. ORBextractor.nLevels: 8
  39. # ORB Extractor: Fast threshold
  40. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  41. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  42. # You can lower these values if your images have low contrast
  43. ORBextractor.iniThFAST: 20
  44. ORBextractor.minThFAST: 7
  45. #--------------------------------------------------------------------------------------------
  46. # Viewer Parameters
  47. #--------------------------------------------------------------------------------------------
  48. Viewer.KeyFrameSize: 0.05
  49. Viewer.KeyFrameLineWidth: 1
  50. Viewer.GraphLineWidth: 0.9
  51. Viewer.PointSize:2
  52. Viewer.CameraSize: 0.08
  53. Viewer.CameraLineWidth: 3
  54. Viewer.ViewpointX: 0
  55. Viewer.ViewpointY: -0.7
  56. Viewer.ViewpointZ: -1.8
  57. Viewer.ViewpointF: 500