RealSense_D435i.yaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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: 617.201
  9. Camera1.fy: 617.362
  10. Camera1.cx: 324.637
  11. Camera1.cy: 242.462
  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. # Close/Far threshold. Baseline times.
  25. Stereo.ThDepth: 40.0
  26. Stereo.b: 0.0745
  27. # Depth map values factor
  28. RGBD.DepthMapFactor: 1000.0
  29. #--------------------------------------------------------------------------------------------
  30. # ORB Parameters
  31. #--------------------------------------------------------------------------------------------
  32. # ORB Extractor: Number of features per image
  33. ORBextractor.nFeatures: 1250
  34. # ORB Extractor: Scale factor between levels in the scale pyramid
  35. ORBextractor.scaleFactor: 1.2
  36. # ORB Extractor: Number of levels in the scale pyramid
  37. ORBextractor.nLevels: 8
  38. # ORB Extractor: Fast threshold
  39. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  40. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  41. # You can lower these values if your images have low contrast
  42. ORBextractor.iniThFAST: 20
  43. ORBextractor.minThFAST: 7
  44. #--------------------------------------------------------------------------------------------
  45. # Viewer Parameters
  46. #--------------------------------------------------------------------------------------------
  47. Viewer.KeyFrameSize: 0.05
  48. Viewer.KeyFrameLineWidth: 1.0
  49. Viewer.GraphLineWidth: 0.9
  50. Viewer.PointSize: 2.0
  51. Viewer.CameraSize: 0.08
  52. Viewer.CameraLineWidth: 3.0
  53. Viewer.ViewpointX: 0.0
  54. Viewer.ViewpointY: -0.7
  55. Viewer.ViewpointZ: -3.5
  56. Viewer.ViewpointF: 500.0