Asus.yaml 2.0 KB

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