ost.yaml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "PinHole"
  7. # Camera calibration and distortion parameters (OpenCV)
  8. Camera1.fx: 621.19783
  9. Camera1.fy: 624.29785
  10. Camera1.cx: 327.35984
  11. Camera1.cy: 238.12506
  12. Camera1.k1: 0.112341
  13. Camera1.k2: -0.170053
  14. Camera1.p1: -0.004971
  15. Camera1.p2: 0.003109
  16. Camera1.k3: 0.000000
  17. # Camera frames per second
  18. Camera.fps: 30
  19. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  20. Camera.RGB: 1
  21. # Camera resolution
  22. Camera.width: 640
  23. Camera.height: 480
  24. #--------------------------------------------------------------------------------------------
  25. # ORB Parameters
  26. #--------------------------------------------------------------------------------------------
  27. # ORB Extractor: Number of features per image
  28. ORBextractor.nFeatures: 1000
  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. #--------------------------------------------------------------------------------------------
  40. # Viewer Parameters
  41. #--------------------------------------------------------------------------------------------
  42. Viewer.KeyFrameSize: 0.05
  43. Viewer.KeyFrameLineWidth: 1.0
  44. Viewer.GraphLineWidth: 0.9
  45. Viewer.PointSize: 2.0
  46. Viewer.CameraSize: 0.08
  47. Viewer.CameraLineWidth: 3.0
  48. Viewer.ViewpointX: 0.0
  49. Viewer.ViewpointY: -0.7
  50. Viewer.ViewpointZ: -1.8
  51. Viewer.ViewpointF: 500.0