RealSense_D435i.yaml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. File.version: "1.0"
  6. Camera.type: "Rectified"
  7. # Rectified Camera calibration and distortion parameters (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. #--------------------------------------------------------------------------------------------
  23. # ORB Parameters
  24. #--------------------------------------------------------------------------------------------
  25. # ORB Extractor: Number of features per image
  26. ORBextractor.nFeatures: 1250
  27. # ORB Extractor: Scale factor between levels in the scale pyramid
  28. ORBextractor.scaleFactor: 1.2
  29. # ORB Extractor: Number of levels in the scale pyramid
  30. ORBextractor.nLevels: 8
  31. # ORB Extractor: Fast threshold
  32. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  33. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  34. # You can lower these values if your images have low contrast
  35. ORBextractor.iniThFAST: 20
  36. ORBextractor.minThFAST: 7
  37. #--------------------------------------------------------------------------------------------
  38. # Viewer Parameters
  39. #--------------------------------------------------------------------------------------------
  40. Viewer.KeyFrameSize: 0.05
  41. Viewer.KeyFrameLineWidth: 1.0
  42. Viewer.GraphLineWidth: 0.9
  43. Viewer.PointSize: 2.0
  44. Viewer.CameraSize: 0.08
  45. Viewer.CameraLineWidth: 3.0
  46. Viewer.ViewpointX: 0.0
  47. Viewer.ViewpointY: -0.7
  48. Viewer.ViewpointZ: -3.5
  49. Viewer.ViewpointF: 500.0