TUM1.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "PinHole"
  7. # Camera calibration and distortion parameters (OpenCV)
  8. Camera1.fx: 517.306408
  9. Camera1.fy: 516.469215
  10. Camera1.cx: 318.643040
  11. Camera1.cy: 255.313989
  12. Camera1.k1: 0.262383
  13. Camera1.k2: -0.953104
  14. Camera1.p1: -0.005358
  15. Camera1.p2: 0.002628
  16. Camera1.k3: 1.163314
  17. Camera.width: 640
  18. Camera.height: 480
  19. # Camera frames per second
  20. Camera.fps: 30
  21. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  22. Camera.RGB: 1
  23. # Close/Far threshold. Baseline times.
  24. Stereo.ThDepth: 40.0
  25. Stereo.b: 0.07732
  26. # Depth map values factor
  27. RGBD.DepthMapFactor: 5000.0 # 1.0 for ROS_bag
  28. #--------------------------------------------------------------------------------------------
  29. # ORB Parameters
  30. #--------------------------------------------------------------------------------------------
  31. # ORB Extractor: Number of features per image
  32. ORBextractor.nFeatures: 1000
  33. # ORB Extractor: Scale factor between levels in the scale pyramid
  34. ORBextractor.scaleFactor: 1.2
  35. # ORB Extractor: Number of levels in the scale pyramid
  36. ORBextractor.nLevels: 8
  37. # ORB Extractor: Fast threshold
  38. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  39. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  40. # You can lower these values if your images have low contrast
  41. ORBextractor.iniThFAST: 20
  42. ORBextractor.minThFAST: 7
  43. #--------------------------------------------------------------------------------------------
  44. # Viewer Parameters
  45. #--------------------------------------------------------------------------------------------
  46. Viewer.KeyFrameSize: 0.05
  47. Viewer.KeyFrameLineWidth: 1.0
  48. Viewer.GraphLineWidth: 0.9
  49. Viewer.PointSize: 2.0
  50. Viewer.CameraSize: 0.08
  51. Viewer.CameraLineWidth: 3.0
  52. Viewer.ViewpointX: 0.0
  53. Viewer.ViewpointY: -0.7
  54. Viewer.ViewpointZ: -1.8
  55. Viewer.ViewpointF: 500.0