TUM_512.yaml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. %YAML:1.0
  2. #--------------------------------------------------------------------------------------------
  3. # Camera Parameters. Adjust them!
  4. #--------------------------------------------------------------------------------------------
  5. Camera.type: "KannalaBrandt8"
  6. # Left Camera calibration and distortion parameters (OpenCV)
  7. Camera.fx: 190.97847715128717
  8. Camera.fy: 190.9733070521226
  9. Camera.cx: 254.93170605935475
  10. Camera.cy: 256.8974428996504
  11. # Kannala-Brandt distortion parameters
  12. Camera.k1: 0.0034823894022493434
  13. Camera.k2: 0.0007150348452162257
  14. Camera.k3: -0.0020532361418706202
  15. Camera.k4: 0.00020293673591811182
  16. # Right Camera calibration and distortion parameters (OpenCV)
  17. Camera2.fx: 190.44236969414825
  18. Camera2.fy: 190.4344384721956
  19. Camera2.cx: 252.59949716835982
  20. Camera2.cy: 254.91723064636983
  21. # Kannala-Brandt distortion parameters
  22. Camera2.k1: 0.0034003170790442797
  23. Camera2.k2: 0.001766278153469831
  24. Camera2.k3: -0.00266312569781606
  25. Camera2.k4: 0.0003299517423931039
  26. # Transformation matrix from right camera to left camera
  27. #Tlr: !!opencv-matrix
  28. # rows: 3
  29. # cols: 4
  30. # dt: f
  31. # data: [ 1.0000, 0.0008, 0.0007, 0.1011,
  32. # -0.0008, 0.9989, 0.0469, 0.0019,
  33. # -0.0007, -0.0469, 0.9989, 0.0010]
  34. Tlr: !!opencv-matrix
  35. rows: 3
  36. cols: 4
  37. dt: f
  38. data: [ 0.999999445773493, 0.000791687752817, 0.000694034010224, 0.101063427414194,
  39. -0.000823363992158, 0.998899461915674, 0.046895490788700, 0.001946204678584,
  40. -0.000656143613644, -0.046896036240590, 0.998899560146304, 0.001015350132563]
  41. # Lapping area between images
  42. Lapping.left: 0
  43. Lapping.right: 511
  44. # Camera frames per second
  45. Camera.fps: 20.0
  46. # Color order of the images (0: BGR, 1: RGB. It is ignored if images are grayscale)
  47. Camera.RGB: 1
  48. # Close/Far threshold. Baseline times.
  49. ThDepth: 40
  50. Camera.bf: 19.3079
  51. #--------------------------------------------------------------------------------------------
  52. # ORB Parameters
  53. #--------------------------------------------------------------------------------------------
  54. # ORB Extractor: Number of features per image
  55. ORBextractor.nFeatures: 1000
  56. # ORB Extractor: Scale factor between levels in the scale pyramid
  57. ORBextractor.scaleFactor: 1.2
  58. # ORB Extractor: Number of levels in the scale pyramid
  59. ORBextractor.nLevels: 8
  60. # ORB Extractor: Fast threshold
  61. # Image is divided in a grid. At each cell FAST are extracted imposing a minimum response.
  62. # Firstly we impose iniThFAST. If no corners are detected we impose a lower value minThFAST
  63. # You can lower these values if your images have low contrast
  64. ORBextractor.iniThFAST: 20
  65. ORBextractor.minThFAST: 7
  66. #--------------------------------------------------------------------------------------------
  67. # Viewer Parameters
  68. #--------------------------------------------------------------------------------------------
  69. Viewer.KeyFrameSize: 0.05
  70. Viewer.KeyFrameLineWidth: 1
  71. Viewer.GraphLineWidth: 1
  72. Viewer.PointSize:2
  73. Viewer.CameraSize: 0.05
  74. Viewer.CameraLineWidth: 2
  75. Viewer.ViewpointX: 0
  76. Viewer.ViewpointY: -10
  77. Viewer.ViewpointZ: -0.1
  78. Viewer.ViewpointF: 2000