RealSense_D435i.yaml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "PinHole"
  7. # Right Camera calibration and distortion parameters (OpenCV)
  8. Camera1.fx: 382.613
  9. Camera1.fy: 382.613
  10. Camera1.cx: 320.183
  11. Camera1.cy: 236.455
  12. # distortion parameters
  13. Camera1.k1: 0.0
  14. Camera1.k2: 0.0
  15. Camera1.p1: 0.0
  16. Camera1.p2: 0.0
  17. # Camera resolution
  18. Camera.width: 640
  19. Camera.height: 480
  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: [1,0,0,-0.005,
  30. 0,1,0,-0.005,
  31. 0,0,1,0.0117,
  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: 1e-3 # 2.44e-4 #1e-3 # rad/s^0.5
  37. IMU.NoiseAcc: 1e-2 # 1.47e-3 #1e-2 # m/s^1.5
  38. IMU.GyroWalk: 1e-6 # rad/s^1.5
  39. IMU.AccWalk: 1e-4 # 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: 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