RealSense_T265.yaml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "KannalaBrandt8"
  7. # Left Camera calibration and distortion parameters (OpenCV)
  8. Camera1.fx: 284.9501953125
  9. Camera1.fy: 285.115295410156
  10. Camera1.cx: 420.500213623047
  11. Camera1.cy: 400.738098144531
  12. # Kannala-Brandt distortion parameters
  13. Camera1.k1: -0.00530046410858631
  14. Camera1.k2: 0.0423333682119846
  15. Camera1.k3: -0.03949885815382
  16. Camera1.k4: 0.00682387687265873
  17. # Camera resolution
  18. Camera.width: 848
  19. Camera.height: 800
  20. # Camera frames per second
  21. Camera.fps: 30
  22. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  23. Camera.RGB: 1
  24. # Transformation from body-frame (imu) to left camera
  25. IMU.T_b_c1: !!opencv-matrix
  26. rows: 4
  27. cols: 4
  28. dt: f
  29. data: [-0.999959, -0.00265193, 0.00870996, 0.0107000041753054,
  30. 0.00262197, -0.999991, -0.0034493, -1.45519152283669e-11,
  31. 0.00871902, -0.00342632, 0.999956, -1.45519152283669e-11,
  32. 0.0, 0.0, 0.0, 1.0]
  33. # Do not insert KFs when recently lost
  34. IMU.InsertKFsWhenLost: 0
  35. # IMU noise (Use those from VINS-mono)
  36. IMU.NoiseGyro: 0.000005148030141 # rad/s^0.5
  37. IMU.NoiseAcc: 0.000066952452471 # m/s^1.5
  38. IMU.GyroWalk: 0.000000499999999 # rad/s^1.5
  39. IMU.AccWalk: 0.000099999997474 # m/s^2.5
  40. IMU.Frequency: 200.0
  41. #--------------------------------------------------------------------------------------------
  42. # ORB Parameters
  43. #--------------------------------------------------------------------------------------------
  44. # ORB Extractor: Number of features per image
  45. ORBextractor.nFeatures: 800 # Tested with 1250
  46. # ORB Extractor: Scale factor between levels in the scale pyramid
  47. ORBextractor.scaleFactor: 1.2
  48. # ORB Extractor: Number of levels in the scale pyramid
  49. ORBextractor.nLevels: 8
  50. # ORB Extractor: Fast threshold
  51. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  52. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  53. # You can lower these values if your images have low contrast
  54. ORBextractor.iniThFAST: 20
  55. ORBextractor.minThFAST: 7
  56. #--------------------------------------------------------------------------------------------
  57. # Viewer Parameters
  58. #--------------------------------------------------------------------------------------------
  59. Viewer.KeyFrameSize: 0.05
  60. Viewer.KeyFrameLineWidth: 1.0
  61. Viewer.GraphLineWidth: 0.9
  62. Viewer.PointSize: 2.0
  63. Viewer.CameraSize: 0.08
  64. Viewer.CameraLineWidth: 3.0
  65. Viewer.ViewpointX: 0.0
  66. Viewer.ViewpointY: -0.7
  67. Viewer.ViewpointZ: -3.5
  68. Viewer.ViewpointF: 500.0
  69. Viewer.imageViewScale: 2.0