KITTI03.yaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "Rectified"
  7. # Camera calibration and distortion parameters (OpenCV)
  8. Camera1.fx: 721.5377
  9. Camera1.fy: 721.5377
  10. Camera1.cx: 609.5593
  11. Camera1.cy: 172.854
  12. Camera.width: 1241
  13. Camera.height: 376
  14. # Camera frames per second
  15. Camera.fps: 10
  16. Stereo.b: 0.53715
  17. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  18. Camera.RGB: 1
  19. # Close/Far threshold. Baseline times.
  20. Stereo.ThDepth: 40.0
  21. #--------------------------------------------------------------------------------------------
  22. # ORB Parameters
  23. #--------------------------------------------------------------------------------------------
  24. # ORB Extractor: Number of features per image
  25. ORBextractor.nFeatures: 2000
  26. # ORB Extractor: Scale factor between levels in the scale pyramid
  27. ORBextractor.scaleFactor: 1.2
  28. # ORB Extractor: Number of levels in the scale pyramid
  29. ORBextractor.nLevels: 8
  30. # ORB Extractor: Fast threshold
  31. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  32. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  33. # You can lower these values if your images have low contrast
  34. ORBextractor.iniThFAST: 20
  35. ORBextractor.minThFAST: 7
  36. #--------------------------------------------------------------------------------------------
  37. # Viewer Parameters
  38. #--------------------------------------------------------------------------------------------
  39. Viewer.KeyFrameSize: 0.6
  40. Viewer.KeyFrameLineWidth: 2.0
  41. Viewer.GraphLineWidth: 1.0
  42. Viewer.PointSize: 2.0
  43. Viewer.CameraSize: 0.7
  44. Viewer.CameraLineWidth: 3.0
  45. Viewer.ViewpointX: 0.0
  46. Viewer.ViewpointY: -100.0
  47. Viewer.ViewpointZ: -0.1
  48. Viewer.ViewpointF: 2000.0