TUM-VI.yaml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. Camera.type: "KannalaBrandt8"
  6. # Camera calibration and distortion parameters (OpenCV)
  7. Camera.fx: 190.978477 # 190.97847715128717
  8. Camera.fy: 190.973307 # 190.9733070521226
  9. Camera.cx: 254.931706 # 254.93170605935475
  10. Camera.cy: 256.897442 # 256.8974428996504
  11. # Equidistant distortion 0.0034823894022493434, 0.0007150348452162257, -0.0020532361418706202, 0.00020293673591811182
  12. # Camera.bFishEye: 1
  13. Camera.k1: 0.003482389402 # 0.0034823894022493434
  14. Camera.k2: 0.000715034845 # 0.0007150348452162257
  15. Camera.k3: -0.002053236141 # -0.0020532361418706202
  16. Camera.k4: 0.000202936736 # 0.00020293673591811182
  17. # Camera resolution
  18. Camera.width: 512
  19. Camera.height: 512
  20. # Camera frames per second
  21. Camera.fps: 20.0
  22. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  23. Camera.RGB: 1
  24. #--------------------------------------------------------------------------------------------
  25. # ORB Parameters
  26. #--------------------------------------------------------------------------------------------
  27. # ORB Extractor: Number of features per image
  28. ORBextractor.nFeatures: 1500 # Tested with 1250
  29. # ORB Extractor: Scale factor between levels in the scale pyramid
  30. ORBextractor.scaleFactor: 1.2
  31. # ORB Extractor: Number of levels in the scale pyramid
  32. ORBextractor.nLevels: 8
  33. # ORB Extractor: Fast threshold
  34. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  35. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  36. # You can lower these values if your images have low contrast
  37. # ORBextractor.iniThFAST: 20
  38. # ORBextractor.minThFAST: 7
  39. ORBextractor.iniThFAST: 20 # 20
  40. ORBextractor.minThFAST: 7 # 7
  41. #--------------------------------------------------------------------------------------------
  42. # Viewer Parameters
  43. #--------------------------------------------------------------------------------------------
  44. Viewer.KeyFrameSize: 0.05
  45. Viewer.KeyFrameLineWidth: 1
  46. Viewer.GraphLineWidth: 0.9
  47. Viewer.PointSize: 2
  48. Viewer.CameraSize: 0.08
  49. Viewer.CameraLineWidth: 3
  50. Viewer.ViewpointX: 0
  51. Viewer.ViewpointY: -0.7
  52. Viewer.ViewpointZ: -3.5 # -1.8
  53. Viewer.ViewpointF: 500