KITTI03.yaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 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. # Camera resolution
  20. Camera.width: 1241
  21. Camera.height: 376
  22. #--------------------------------------------------------------------------------------------
  23. # ORB Parameters
  24. #--------------------------------------------------------------------------------------------
  25. # ORB Extractor: Number of features per image
  26. ORBextractor.nFeatures: 2000
  27. # ORB Extractor: Scale factor between levels in the scale pyramid
  28. ORBextractor.scaleFactor: 1.2
  29. # ORB Extractor: Number of levels in the scale pyramid
  30. ORBextractor.nLevels: 8
  31. # ORB Extractor: Fast threshold
  32. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  33. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  34. # You can lower these values if your images have low contrast
  35. ORBextractor.iniThFAST: 20
  36. ORBextractor.minThFAST: 7
  37. #--------------------------------------------------------------------------------------------
  38. # Viewer Parameters
  39. #--------------------------------------------------------------------------------------------
  40. Viewer.KeyFrameSize: 0.1
  41. Viewer.KeyFrameLineWidth: 1
  42. Viewer.GraphLineWidth: 1
  43. Viewer.PointSize:2
  44. Viewer.CameraSize: 0.15
  45. Viewer.CameraLineWidth: 2
  46. Viewer.ViewpointX: 0
  47. Viewer.ViewpointY: -10
  48. Viewer.ViewpointZ: -0.1
  49. Viewer.ViewpointF: 2000