TUM3.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: 535.4
  9. Camera1.fy: 539.2
  10. Camera1.cx: 320.1
  11. Camera1.cy: 247.6
  12. Camera1.k1: 0.0
  13. Camera1.k2: 0.0
  14. Camera1.p1: 0.0
  15. Camera1.p2: 0.0
  16. Camera.width: 640
  17. Camera.height: 480
  18. # Camera frames per second
  19. Camera.fps: 30
  20. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  21. Camera.RGB: 1
  22. # Close/Far threshold. Baseline times.
  23. Stereo.ThDepth: 40.0
  24. Stereo.b: 0.0747
  25. # Depth map values factor
  26. RGBD.DepthMapFactor: 5000.0
  27. #--------------------------------------------------------------------------------------------
  28. # ORB Parameters
  29. #--------------------------------------------------------------------------------------------
  30. # ORB Extractor: Number of features per image
  31. ORBextractor.nFeatures: 1000
  32. # ORB Extractor: Scale factor between levels in the scale pyramid
  33. ORBextractor.scaleFactor: 1.2
  34. # ORB Extractor: Number of levels in the scale pyramid
  35. ORBextractor.nLevels: 8
  36. # ORB Extractor: Fast threshold
  37. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  38. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  39. # You can lower these values if your images have low contrast
  40. ORBextractor.iniThFAST: 20
  41. ORBextractor.minThFAST: 7
  42. #--------------------------------------------------------------------------------------------
  43. # Viewer Parameters
  44. #--------------------------------------------------------------------------------------------
  45. Viewer.KeyFrameSize: 0.05
  46. Viewer.KeyFrameLineWidth: 1.0
  47. Viewer.GraphLineWidth: 0.9
  48. Viewer.PointSize: 2.0
  49. Viewer.CameraSize: 0.08
  50. Viewer.CameraLineWidth: 3.0
  51. Viewer.ViewpointX: 0.0
  52. Viewer.ViewpointY: -0.7
  53. Viewer.ViewpointZ: -1.8
  54. Viewer.ViewpointF: 500.0