Asus.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. Camera.type: "PinHole"
  6. # Camera calibration and distortion parameters (OpenCV)
  7. Camera.fx: 535.4
  8. Camera.fy: 539.2
  9. Camera.cx: 320.1
  10. Camera.cy: 247.6
  11. Camera.k1: 0.0
  12. Camera.k2: 0.0
  13. Camera.p1: 0.0
  14. Camera.p2: 0.0
  15. Camera.width: 640
  16. Camera.height: 480
  17. # Camera frames per second
  18. Camera.fps: 30.0
  19. # IR projector baseline times fx (aprox.)
  20. Camera.bf: 40.0
  21. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  22. Camera.RGB: 1
  23. # Close/Far threshold. Baseline times.
  24. ThDepth: 40.0
  25. # Deptmap values factor
  26. DepthMapFactor: 1.0
  27. #--------------------------------------------------------------------------------------------
  28. # ORB Parameters
  29. #--------------------------------------------------------------------------------------------
  30. # ORB Extractor: Number of features per image
  31. ORBextractor.nFeatures: 1000
  32. # ORB Extractor: Scale factor between levels in the scale pyramid
  33. ORBextractor.scaleFactor: 1.2
  34. # ORB Extractor: Number of levels in the scale pyramid
  35. ORBextractor.nLevels: 8
  36. # ORB Extractor: Fast threshold
  37. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  38. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  39. # You can lower these values if your images have low contrast
  40. ORBextractor.iniThFAST: 20
  41. ORBextractor.minThFAST: 7
  42. #--------------------------------------------------------------------------------------------
  43. # Viewer Parameters
  44. #--------------------------------------------------------------------------------------------
  45. Viewer.KeyFrameSize: 0.05
  46. Viewer.KeyFrameLineWidth: 1
  47. Viewer.GraphLineWidth: 0.9
  48. Viewer.PointSize:2
  49. Viewer.CameraSize: 0.08
  50. Viewer.CameraLineWidth: 3
  51. Viewer.ViewpointX: 0
  52. Viewer.ViewpointY: -0.7
  53. Viewer.ViewpointZ: -1.8
  54. Viewer.ViewpointF: 500