RealSense_D435i.yaml 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. Camera.type: "PinHole"
  6. # Left 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. # Right Camera calibration and distortion parameters (OpenCV)
  17. Camera2.fx: 382.613
  18. Camera2.fy: 382.613
  19. Camera2.cx: 320.183
  20. Camera2.cy: 236.455
  21. # distortion parameters
  22. Camera2.k1: 0.0
  23. Camera2.k2: 0.0
  24. Camera2.p1: 0.0
  25. Camera2.p2: 0.0
  26. Tlr: !!opencv-matrix
  27. rows: 3
  28. cols: 4
  29. dt: f
  30. data: [1.0, 0.0, 0.0, 0.0499585,
  31. 0.0, 1.0, 0.0, 0.0,
  32. 0.0, 0.0, 1.0, 0.0,
  33. 0.0, 0.0, 0.0, 1.0]
  34. # Camera resolution
  35. Camera.width: 640
  36. Camera.height: 480
  37. # Camera frames per second
  38. Camera.fps: 30.0
  39. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  40. Camera.RGB: 1
  41. # Image scale, it changes the image size to be processed (<1.0: reduce, >1.0: increase)
  42. Camera.imageScale: 0.5 # 0.5 #0.7071 # 1/sqrt(2)
  43. # Close/Far threshold. Baseline times.
  44. ThDepth: 40.0
  45. # stereo baseline times fx
  46. Camera.bf: 19.114771561
  47. #--------------------------------------------------------------------------------------------
  48. # ORB Parameters
  49. #--------------------------------------------------------------------------------------------
  50. # ORB Extractor: Number of features per image
  51. ORBextractor.nFeatures: 1250
  52. # ORB Extractor: Scale factor between levels in the scale pyramid
  53. ORBextractor.scaleFactor: 1.2
  54. # ORB Extractor: Number of levels in the scale pyramid
  55. ORBextractor.nLevels: 8
  56. # ORB Extractor: Fast threshold
  57. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  58. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  59. # You can lower these values if your images have low contrast
  60. ORBextractor.iniThFAST: 20
  61. ORBextractor.minThFAST: 7
  62. #--------------------------------------------------------------------------------------------
  63. # Viewer Parameters
  64. #--------------------------------------------------------------------------------------------
  65. Viewer.KeyFrameSize: 0.05
  66. Viewer.KeyFrameLineWidth: 1
  67. Viewer.GraphLineWidth: 0.9
  68. Viewer.PointSize: 2
  69. Viewer.CameraSize: 0.08
  70. Viewer.CameraLineWidth: 3
  71. Viewer.ViewpointX: 0
  72. Viewer.ViewpointY: -0.7
  73. Viewer.ViewpointZ: -3.5
  74. Viewer.ViewpointF: 500