KITTI00-02.yaml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 718.856
  8. Camera.fy: 718.856
  9. Camera.cx: 607.1928
  10. Camera.cy: 185.2157
  11. Camera.k1: 0.0
  12. Camera.k2: 0.0
  13. Camera.p1: 0.0
  14. Camera.p2: 0.0
  15. # Camera frames per second
  16. Camera.fps: 10.0
  17. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  18. Camera.RGB: 1
  19. #--------------------------------------------------------------------------------------------
  20. # ORB Parameters
  21. #--------------------------------------------------------------------------------------------
  22. # ORB Extractor: Number of features per image
  23. ORBextractor.nFeatures: 2000
  24. # ORB Extractor: Scale factor between levels in the scale pyramid
  25. ORBextractor.scaleFactor: 1.2
  26. # ORB Extractor: Number of levels in the scale pyramid
  27. ORBextractor.nLevels: 8
  28. # ORB Extractor: Fast threshold
  29. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  30. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  31. # You can lower these values if your images have low contrast
  32. ORBextractor.iniThFAST: 20
  33. ORBextractor.minThFAST: 7
  34. #--------------------------------------------------------------------------------------------
  35. # Viewer Parameters
  36. #--------------------------------------------------------------------------------------------
  37. Viewer.KeyFrameSize: 0.1
  38. Viewer.KeyFrameLineWidth: 1
  39. Viewer.GraphLineWidth: 1
  40. Viewer.PointSize:2
  41. Viewer.CameraSize: 0.15
  42. Viewer.CameraLineWidth: 2
  43. Viewer.ViewpointX: 0
  44. Viewer.ViewpointY: -10
  45. Viewer.ViewpointZ: -0.1
  46. Viewer.ViewpointF: 2000