RealSense_D435i.yaml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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: 617.201
  8. Camera.fy: 617.362
  9. Camera.cx: 324.637
  10. Camera.cy: 242.462
  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: 46.01
  29. # Deptmap values factor
  30. DepthMapFactor: 1000.0
  31. # Transformation from body-frame (imu) to left camera
  32. Tbc: !!opencv-matrix
  33. rows: 4
  34. cols: 4
  35. dt: f
  36. data: [1,0,0,-0.005,
  37. 0,1,0,-0.005,
  38. 0,0,1,0.0117,
  39. 0.0, 0.0, 0.0, 1.0]
  40. # Do not insert KFs when recently lost
  41. InsertKFsWhenLost: 0
  42. # IMU noise (Use those from VINS-mono)
  43. IMU.NoiseGyro: 1e-3 # 2.44e-4 #1e-3 # rad/s^0.5
  44. IMU.NoiseAcc: 1e-2 # 1.47e-3 #1e-2 # m/s^1.5
  45. IMU.GyroWalk: 1e-6 # rad/s^1.5
  46. IMU.AccWalk: 1e-4 # m/s^2.5
  47. IMU.Frequency: 200
  48. #--------------------------------------------------------------------------------------------
  49. # ORB Parameters
  50. #--------------------------------------------------------------------------------------------
  51. # ORB Extractor: Number of features per image
  52. ORBextractor.nFeatures: 1250
  53. # ORB Extractor: Scale factor between levels in the scale pyramid
  54. ORBextractor.scaleFactor: 1.2
  55. # ORB Extractor: Number of levels in the scale pyramid
  56. ORBextractor.nLevels: 8
  57. # ORB Extractor: Fast threshold
  58. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  59. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  60. # You can lower these values if your images have low contrast
  61. ORBextractor.iniThFAST: 20
  62. ORBextractor.minThFAST: 7
  63. #--------------------------------------------------------------------------------------------
  64. # Viewer Parameters
  65. #--------------------------------------------------------------------------------------------
  66. Viewer.KeyFrameSize: 0.05
  67. Viewer.KeyFrameLineWidth: 1
  68. Viewer.GraphLineWidth: 0.9
  69. Viewer.PointSize: 2
  70. Viewer.CameraSize: 0.08
  71. Viewer.CameraLineWidth: 3
  72. Viewer.ViewpointX: 0
  73. Viewer.ViewpointY: -0.7
  74. Viewer.ViewpointZ: -3.5
  75. Viewer.ViewpointF: 500