RealSense_D435i.yaml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "Rectified"
  7. # Rectified Camera calibration (OpenCV)
  8. Camera1.fx: 382.613
  9. Camera1.fy: 382.613
  10. Camera1.cx: 320.183
  11. Camera1.cy: 236.455
  12. Stereo.b: 0.0499585
  13. # Camera resolution
  14. Camera.width: 640
  15. Camera.height: 480
  16. # Camera frames per second
  17. Camera.fps: 30
  18. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  19. Camera.RGB: 1
  20. # Close/Far threshold. Baseline times.
  21. Stereo.ThDepth: 40.0
  22. # Transformation from body-frame (imu) to left camera
  23. IMU.T_b_c1: !!opencv-matrix
  24. rows: 4
  25. cols: 4
  26. dt: f
  27. data: [1.0, 0.0, 0.0, -0.005,
  28. 0.0, 1.0, 0.0, -0.005,
  29. 0.0, 0.0, 1.0, 0.0117,
  30. 0.0, 0.0, 0.0, 1.0]
  31. # Do not insert KFs when recently lost
  32. IMU.InsertKFsWhenLost: 0
  33. # IMU noise (Use those from VINS-mono)
  34. IMU.NoiseGyro: 1e-3 # 2.44e-4 #1e-3 # rad/s^0.5
  35. IMU.NoiseAcc: 1e-2 # 1.47e-3 #1e-2 # m/s^1.5
  36. IMU.GyroWalk: 1e-6 # rad/s^1.5
  37. IMU.AccWalk: 1e-4 # m/s^2.5
  38. IMU.Frequency: 200.0
  39. #--------------------------------------------------------------------------------------------
  40. # ORB Parameters
  41. #--------------------------------------------------------------------------------------------
  42. # ORB Extractor: Number of features per image
  43. ORBextractor.nFeatures: 1250
  44. # ORB Extractor: Scale factor between levels in the scale pyramid
  45. ORBextractor.scaleFactor: 1.2
  46. # ORB Extractor: Number of levels in the scale pyramid
  47. ORBextractor.nLevels: 8
  48. # ORB Extractor: Fast threshold
  49. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  50. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  51. # You can lower these values if your images have low contrast
  52. ORBextractor.iniThFAST: 20
  53. ORBextractor.minThFAST: 7
  54. #--------------------------------------------------------------------------------------------
  55. # Viewer Parameters
  56. #--------------------------------------------------------------------------------------------
  57. Viewer.KeyFrameSize: 0.05
  58. Viewer.KeyFrameLineWidth: 1.0
  59. Viewer.GraphLineWidth: 0.9
  60. Viewer.PointSize: 2.0
  61. Viewer.CameraSize: 0.08
  62. Viewer.CameraLineWidth: 3.0
  63. Viewer.ViewpointX: 0.0
  64. Viewer.ViewpointY: -0.7
  65. Viewer.ViewpointZ: -3.5
  66. Viewer.ViewpointF: 500.0