KITTI03.yaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: 721.5377
  8. Camera.fy: 721.5377
  9. Camera.cx: 609.5593
  10. Camera.cy: 172.854
  11. Camera.k1: 0.0
  12. Camera.k2: 0.0
  13. Camera.p1: 0.0
  14. Camera.p2: 0.0
  15. Camera.width: 1241
  16. Camera.height: 376
  17. # Camera frames per second
  18. Camera.fps: 10.0
  19. # stereo baseline times fx
  20. Camera.bf: 387.5744
  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. ThDepth: 40.0
  25. #--------------------------------------------------------------------------------------------
  26. # ORB Parameters
  27. #--------------------------------------------------------------------------------------------
  28. # ORB Extractor: Number of features per image
  29. ORBextractor.nFeatures: 2000
  30. # ORB Extractor: Scale factor between levels in the scale pyramid
  31. ORBextractor.scaleFactor: 1.2
  32. # ORB Extractor: Number of levels in the scale pyramid
  33. ORBextractor.nLevels: 8
  34. # ORB Extractor: Fast threshold
  35. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  36. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  37. # You can lower these values if your images have low contrast
  38. ORBextractor.iniThFAST: 20
  39. ORBextractor.minThFAST: 7
  40. #--------------------------------------------------------------------------------------------
  41. # Viewer Parameters
  42. #--------------------------------------------------------------------------------------------
  43. Viewer.KeyFrameSize: 0.6
  44. Viewer.KeyFrameLineWidth: 2
  45. Viewer.GraphLineWidth: 1
  46. Viewer.PointSize:2
  47. Viewer.CameraSize: 0.7
  48. Viewer.CameraLineWidth: 3
  49. Viewer.ViewpointX: 0
  50. Viewer.ViewpointY: -100
  51. Viewer.ViewpointZ: -0.1
  52. Viewer.ViewpointF: 2000