RealSense_T265.yaml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. Camera.type: "KannalaBrandt8"
  6. # Left Camera calibration and distortion parameters (OpenCV)
  7. Camera.fx: 284.9501953125
  8. Camera.fy: 285.115295410156
  9. Camera.cx: 420.500213623047
  10. Camera.cy: 400.738098144531
  11. # Kannala-Brandt distortion parameters
  12. Camera.k1: -0.00530046410858631
  13. Camera.k2: 0.0423333682119846
  14. Camera.k3: -0.03949885815382
  15. Camera.k4: 0.00682387687265873
  16. # Camera resolution
  17. Camera.width: 848
  18. Camera.height: 800
  19. # Camera frames per second
  20. Camera.fps: 30.0
  21. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  22. Camera.RGB: 1
  23. # Image scale, it changes the image size to be processed (<1.0: reduce, >1.0: increase)
  24. Camera.imageScale: 0.7071 # 1/sqrt(2)
  25. #--------------------------------------------------------------------------------------------
  26. # ORB Parameters
  27. #--------------------------------------------------------------------------------------------
  28. # ORB Extractor: Number of features per image
  29. ORBextractor.nFeatures: 1000 # Tested with 1250
  30. # ORB Extractor: Scale factor between levels in the scale pyramid
  31. ORBextractor.scaleFactor: 1.2
  32. # ORB Extractor: Number of levels in the scale pyramid
  33. ORBextractor.nLevels: 8
  34. # ORB Extractor: Fast threshold
  35. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  36. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  37. # You can lower these values if your images have low contrast
  38. ORBextractor.iniThFAST: 20 # 20
  39. ORBextractor.minThFAST: 7 # 7
  40. #--------------------------------------------------------------------------------------------
  41. # Viewer Parameters
  42. #--------------------------------------------------------------------------------------------
  43. Viewer.KeyFrameSize: 0.05
  44. Viewer.KeyFrameLineWidth: 1
  45. Viewer.GraphLineWidth: 0.9
  46. Viewer.PointSize: 2
  47. Viewer.CameraSize: 0.08
  48. Viewer.CameraLineWidth: 3
  49. Viewer.ViewpointX: 0
  50. Viewer.ViewpointY: -0.7
  51. Viewer.ViewpointZ: -3.5
  52. Viewer.ViewpointF: 500