KITTI03.yaml 2.0 KB

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