RealSense_D435i.yaml 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. Camera.type: "PinHole"
  6. # Right Camera calibration and distortion parameters (OpenCV)
  7. Camera.fx: 382.613
  8. Camera.fy: 382.613
  9. Camera.cx: 320.183
  10. Camera.cy: 236.455
  11. # distortion parameters
  12. Camera.k1: 0.0
  13. Camera.k2: 0.0
  14. Camera.p1: 0.0
  15. Camera.p2: 0.0
  16. # Camera resolution
  17. Camera.width: 640
  18. Camera.height: 480
  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.5 # 0.5 #0.7071 # 1/sqrt(2)
  25. # Close/Far threshold. Baseline times.
  26. ThDepth: 40.0
  27. # stereo baseline times fx
  28. Camera.bf: 18.143917436
  29. # Transformation from body-frame (imu) to left camera
  30. Tbc: !!opencv-matrix
  31. rows: 4
  32. cols: 4
  33. dt: f
  34. data: [1,0,0,-0.005,
  35. 0,1,0,-0.005,
  36. 0,0,1,0.0117,
  37. 0.0, 0.0, 0.0, 1.0]
  38. # Do not insert KFs when recently lost
  39. InsertKFsWhenLost: 0
  40. # IMU noise (Use those from VINS-mono)
  41. IMU.NoiseGyro: 1e-3 # 2.44e-4 #1e-3 # rad/s^0.5
  42. IMU.NoiseAcc: 1e-2 # 1.47e-3 #1e-2 # m/s^1.5
  43. IMU.GyroWalk: 1e-6 # rad/s^1.5
  44. IMU.AccWalk: 1e-4 # m/s^2.5
  45. IMU.Frequency: 200
  46. #--------------------------------------------------------------------------------------------
  47. # ORB Parameters
  48. #--------------------------------------------------------------------------------------------
  49. # ORB Extractor: Number of features per image
  50. ORBextractor.nFeatures: 1250
  51. # ORB Extractor: Scale factor between levels in the scale pyramid
  52. ORBextractor.scaleFactor: 1.2
  53. # ORB Extractor: Number of levels in the scale pyramid
  54. ORBextractor.nLevels: 8
  55. # ORB Extractor: Fast threshold
  56. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  57. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  58. # You can lower these values if your images have low contrast
  59. ORBextractor.iniThFAST: 20
  60. ORBextractor.minThFAST: 7
  61. #--------------------------------------------------------------------------------------------
  62. # Viewer Parameters
  63. #--------------------------------------------------------------------------------------------
  64. Viewer.KeyFrameSize: 0.05
  65. Viewer.KeyFrameLineWidth: 1
  66. Viewer.GraphLineWidth: 0.9
  67. Viewer.PointSize: 2
  68. Viewer.CameraSize: 0.08
  69. Viewer.CameraLineWidth: 3
  70. Viewer.ViewpointX: 0
  71. Viewer.ViewpointY: -0.7
  72. Viewer.ViewpointZ: -3.5
  73. Viewer.ViewpointF: 500