RealSense_D435i.yaml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. # 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: 1.0 # 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: 19.114771561
  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
  49. Viewer.GraphLineWidth: 0.9
  50. Viewer.PointSize: 2
  51. Viewer.CameraSize: 0.08
  52. Viewer.CameraLineWidth: 3
  53. Viewer.ViewpointX: 0
  54. Viewer.ViewpointY: -0.7
  55. Viewer.ViewpointZ: -3.5
  56. Viewer.ViewpointF: 500