Advertisement
Guest User

Untitled

a guest
Dec 21st, 2016
503
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.29 KB | None | 0 0
  1. Param: BRIEF/Bytes = "32" [Bytes is a length of descriptor in bytes. It can be equal 16, 32 or 64 bytes.]
  2. Param: BRISK/Octaves = "3" [Detection octaves. Use 0 to do single scale.]
  3. Param: BRISK/PatternScale = "1" [Apply this scale to the pattern used for sampling the neighbourhood of a keypoint.]
  4. Param: BRISK/Thresh = "30" [FAST/AGAST detection threshold score.]
  5. Param: Bayes/FullPredictionUpdate = "false" [Regenerate all the prediction matrix on each iteration (otherwise only removed/added ids are updated).]
  6. Param: Bayes/PredictionLC = "0.1 0.36 0.30 0.16 0.062 0.0151 0.00255 0.000324 2.5e-05 1.3e-06 4.8e-08 1.2e-09 1.9e-11 2.2e-13 1.7e-15 8.5e-18 2.9e-20 6.9e-23" [Prediction of loop closures (Gaussian-like, here with sigma=1.6) - Format: {VirtualPlaceProb, LoopClosureProb, NeighborLvl1, NeighborLvl2, ...}.]
  7. Param: Bayes/VirtualPlacePriorThr = "0.9" [Virtual place prior]
  8. Param: DbSqlite3/CacheSize = "10000" [Sqlite cache size (default is 2000).]
  9. Param: DbSqlite3/InMemory = "false" [Using database in the memory instead of a file on the hard disk.]
  10. Param: DbSqlite3/JournalMode = "3" [0=DELETE, 1=TRUNCATE, 2=PERSIST, 3=MEMORY, 4=OFF (see sqlite3 doc : "PRAGMA journal_mode")]
  11. Param: DbSqlite3/Synchronous = "0" [0=OFF, 1=NORMAL, 2=FULL (see sqlite3 doc : "PRAGMA synchronous")]
  12. Param: DbSqlite3/TempStore = "2" [0=DEFAULT, 1=FILE, 2=MEMORY (see sqlite3 doc : "PRAGMA temp_store")]
  13. Param: FAST/Gpu = "false" [GPU-FAST: Use GPU version of FAST. This option is enabled only if OpenCV is built with CUDA and GPUs are detected.]
  14. Param: FAST/GpuKeypointsRatio = "0.05" [Used with FAST GPU.]
  15. Param: FAST/GridCols = "4" [Grid cols (0 to disable). Adapts the detector to partition the source image into a grid and detect points in each cell.]
  16. Param: FAST/GridRows = "4" [Grid rows (0 to disable). Adapts the detector to partition the source image into a grid and detect points in each cell.]
  17. Param: FAST/MaxThreshold = "200" [Maximum threshold. Used only when FAST/GridRows and FAST/GridCols are set.]
  18. Param: FAST/MinThreshold = "1" [Minimum threshold. Used only when FAST/GridRows and FAST/GridCols are set.]
  19. Param: FAST/NonmaxSuppression = "true" [If true, non-maximum suppression is applied to detected corners (keypoints).]
  20. Param: FAST/Threshold = "10" [Threshold on difference between intensity of the central pixel and pixels of a circle around this pixel.]
  21. Param: FREAK/NOctaves = "4" [Number of octaves covered by the detected keypoints.]
  22. Param: FREAK/OrientationNormalized = "true" [Enable orientation normalization.]
  23. Param: FREAK/PatternScale = "22" [Scaling of the description pattern.]
  24. Param: FREAK/ScaleNormalized = "true" [Enable scale normalization.]
  25. Param: GFTT/BlockSize = "3" []
  26. Param: GFTT/K = "0.04" []
  27. Param: GFTT/MinDistance = "5" []
  28. Param: GFTT/QualityLevel = "0.001" []
  29. Param: GFTT/UseHarrisDetector = "false" []
  30. Param: Icp/CorrespondenceRatio = "0.2" [Ratio of matching correspondences to accept the transform.]
  31. Param: Icp/DownsamplingStep = "1" [Downsampling step size (1=no sampling). This is done before uniform sampling.]
  32. Param: Icp/Epsilon = "0" [Set the transformation epsilon (maximum allowable difference between two consecutive transformations) in order for an optimization to be considered as having converged to the final solution.]
  33. Param: Icp/Iterations = "30" [Max iterations.]
  34. Param: Icp/MaxCorrespondenceDistance = "0.05" [Max distance for point correspondences.]
  35. Param: Icp/MaxRotation = "0.78" [Maximum ICP rotation correction accepted (rad).]
  36. Param: Icp/MaxTranslation = "0.2" [Maximum ICP translation correction accepted (m).]
  37. Param: Icp/PointToPlane = "false" [Use point to plane ICP.]
  38. Param: Icp/PointToPlaneNormalNeighbors = "20" [Number of neighbors to compute normals for point to plane.]
  39. Param: Icp/VoxelSize = "0.025" [Uniform sampling voxel size (0=disabled).]
  40. Param: Kp/BadSignRatio = "0.5" [Bad signature ratio (less than Ratio x AverageWordsPerImage = bad).]
  41. Param: Kp/DetectorStrategy = "0" [0=SURF 1=SIFT 2=ORB 3=FAST/FREAK 4=FAST/BRIEF 5=GFTT/FREAK 6=GFTT/BRIEF 7=BRISK 8=GFTT/ORB.]
  42. Param: Kp/DictionaryPath = "" [Path of the pre-computed dictionary]
  43. Param: Kp/IncrementalDictionary = "true" []
  44. Param: Kp/IncrementalFlann = "true" [When using FLANN based strategy, add/remove points to its index without always rebuilding the index (the index is built only when the dictionary doubles in size).]
  45. Param: Kp/MaxDepth = "0" [Filter extracted keypoints by depth (0=inf).]
  46. Param: Kp/MaxFeatures = "400" [Maximum features extracted from the images (0 means not bounded, <0 means no extraction).]
  47. Param: Kp/MinDepth = "0" [Filter extracted keypoints by depth.]
  48. Param: Kp/NNStrategy = "1" [kNNFlannNaive=0, kNNFlannKdTree=1, kNNFlannLSH=2, kNNBruteForce=3, kNNBruteForceGPU=4]
  49. Param: Kp/NewWordsComparedTogether = "true" [When adding new words to dictionary, they are compared also with each other (to detect same words in the same signature).]
  50. Param: Kp/NndrRatio = "0.8" [NNDR ratio (A matching pair is detected, if its distance is closer than X times the distance of the second nearest neighbor.)]
  51. Param: Kp/Parallelized = "true" [If the dictionary update and signature creation were parallelized.]
  52. Param: Kp/RoiRatios = "0.0 0.0 0.0 0.0" [Region of interest ratios [left, right, top, bottom].]
  53. Param: Kp/SubPixEps = "0.02" [See cv::cornerSubPix().]
  54. Param: Kp/SubPixIterations = "0" [See cv::cornerSubPix(). 0 disables sub pixel refining.]
  55. Param: Kp/SubPixWinSize = "3" [See cv::cornerSubPix().]
  56. Param: Kp/TfIdfLikelihoodUsed = "true" [Use of the td-idf strategy to compute the likelihood.]
  57. Param: Mem/BadSignaturesIgnored = "false" [Bad signatures are ignored.]
  58. Param: Mem/BinDataKept = "true" [Keep binary data in db.]
  59. Param: Mem/GenerateIds = "true" [True=Generate location IDs, False=use input image IDs.]
  60. Param: Mem/ImageKept = "false" [Keep raw images in RAM.]
  61. Param: Mem/ImagePostDecimation = "1" [Image decimation (>=1) of saved data in created signatures (after features extraction). Decimation is done from the original image.]
  62. Param: Mem/ImagePreDecimation = "1" [Image decimation (>=1) before features extraction.]
  63. Param: Mem/IncrementalMemory = "true" [SLAM mode, otherwise it is Localization mode.]
  64. Param: Mem/InitWMWithAllNodes = "false" [Initialize the Working Memory with all nodes in Long-Term Memory. When false, it is initialized with nodes of the previous session.]
  65. Param: Mem/LaserScanDownsampleStepSize = "1" [If > 1, downsample the laser scans when creating a signature.]
  66. Param: Mem/MapLabelsAdded = "true" [Create map labels. The first node of a map will be labelled as "map#" where # is the map ID.]
  67. Param: Mem/NotLinkedNodesKept = "true" [Keep not linked nodes in db (rehearsed nodes and deleted nodes).]
  68. Param: Mem/RawDescriptorsKept = "true" [Raw descriptors kept in memory.]
  69. Param: Mem/RecentWmRatio = "0.2" [Ratio of locations after the last loop closure in WM that cannot be transferred.]
  70. Param: Mem/ReduceGraph = "false" [Reduce graph. Merge nodes when loop closures are added (ignoring those with user data set).]
  71. Param: Mem/RehearsalIdUpdatedToNewOne = "false" [On merge, update to new id. When false, no copy.]
  72. Param: Mem/RehearsalSimilarity = "0.6" [Rehearsal similarity.]
  73. Param: Mem/RehearsalWeightIgnoredWhileMoving = "false" [When the robot is moving, weights are not updated on rehearsal.]
  74. Param: Mem/STMSize = "10" [Short-term memory size.]
  75. Param: Mem/SaveDepth16Format = "false" [Save depth image into 16 bits format to reduce memory used. Warning: values over ~65 meters are ignored (maximum 65535 millimeters).]
  76. Param: Mem/TransferSortingByWeightId = "false" [On transfer, signatures are sorted by weight->ID only (i.e. the oldest of the lowest weighted signatures are transferred first). If false, the signatures are sorted by weight->Age->ID (i.e. the oldest inserted in WM of the lowest weighted signatures are transferred first). Note that retrieval updates the age, not the ID.]
  77. Param: Mem/UseOdomFeatures = "false" [Use odometry features.]
  78. Param: ORB/EdgeThreshold = "31" [This is size of the border where the features are not detected. It should roughly match the patchSize parameter.]
  79. Param: ORB/FirstLevel = "0" [It should be 0 in the current implementation.]
  80. Param: ORB/Gpu = "false" [GPU-ORB: Use GPU version of ORB. This option is enabled only if OpenCV is built with CUDA and GPUs are detected.]
  81. Param: ORB/NLevels = "8" [The number of pyramid levels. The smallest level will have linear size equal to input_image_linear_size/pow(scaleFactor, nlevels).]
  82. Param: ORB/PatchSize = "31" [size of the patch used by the oriented BRIEF descriptor. Of course, on smaller pyramid layers the perceived image area covered by a feature will be larger.]
  83. Param: ORB/ScaleFactor = "1.2" [Pyramid decimation ratio, greater than 1. scaleFactor==2 means the classical pyramid, where each next level has 4x less pixels than the previous, but such a big scale factor will degrade feature matching scores dramatically. On the other hand, too close to 1 scale factor will mean that to cover certain scale range you will need more pyramid levels and so the speed will suffer.]
  84. Param: ORB/ScoreType = "0" [The default HARRIS_SCORE=0 means that Harris algorithm is used to rank features (the score is written to KeyPoint::score and is used to retain best nfeatures features); FAST_SCORE=1 is alternative value of the parameter that produces slightly less stable keypoints, but it is a little faster to compute.]
  85. Param: ORB/WTA_K = "2" [The number of points that produce each element of the oriented BRIEF descriptor. The default value 2 means the BRIEF where we take a random point pair and compare their brightnesses, so we get 0/1 response. Other possible values are 3 and 4. For example, 3 means that we take 3 random points (of course, those point coordinates are random, but they are generated from the pre-defined seed, so each element of BRIEF descriptor is computed deterministically from the pixel rectangle), find point of maximum brightness and output index of the winner (0, 1 or 2). Such output will occupy 2 bits, and therefore it will need a special variant of Hamming distance, denoted as NORM_HAMMING2 (2 bits per bin). When WTA_K=4, we take 4 random points to compute each bin (that will also occupy 2 bits with possible values 0, 1, 2 or 3).]
  86. Param: Optimizer/Epsilon = "0.0001" [Stop optimizing when the error improvement is less than this value.]
  87. Param: Optimizer/Iterations = "100" [Optimization iterations.]
  88. Param: Optimizer/Robust = "false" [Robust graph optimization using Vertigo (only work for g2o and GTSAM optimization strategies). Not compatible with "RGBD/OptimizeMaxError" if enabled.]
  89. Param: Optimizer/Slam2D = "false" [If optimization is done only on x,y and theta (3DoF). Otherwise, it is done on full 6DoF poses.]
  90. Param: Optimizer/Strategy = "0" [Graph optimization strategy: 0=TORO, 1=g2o and 2=GTSAM.]
  91. Param: Optimizer/VarianceIgnored = "false" [Ignore constraints' variance. If checked, identity information matrix is used for each constraint. Otherwise, an information matrix is generated from the variance saved in the links.]
  92. Param: RGBD/AngularUpdate = "0.1" [Minimum angular displacement to update the map. Rehearsal is done prior to this, so weights are still updated.]
  93. Param: RGBD/Enabled = "true" []
  94. Param: RGBD/GoalReachedRadius = "0.5" [Goal reached radius (m).]
  95. Param: RGBD/GoalsSavedInUserData = "false" [When a goal is received and processed with success, it is saved in user data of the location with this format: "GOAL:#".]
  96. Param: RGBD/LinearUpdate = "0.1" [Minimum linear displacement to update the map. Rehearsal is done prior to this, so weights are still updated.]
  97. Param: RGBD/LocalImmunizationRatio = "0.25" [Ratio of working memory for which local nodes are immunized from transfer.]
  98. Param: RGBD/LocalRadius = "10" [Local radius (m) for nodes selection in the local map. This parameter is used in some approaches about the local map management.]
  99. Param: RGBD/LoopClosureReextractFeatures = "false" [Extract features even if there are some already in the nodes.]
  100. Param: RGBD/MaxLocalRetrieved = "2" [Maximum local locations retrieved (0=disabled) near the current pose in the local map or on the current planned path (those on the planned path have priority).]
  101. Param: RGBD/NeighborLinkRefining = "false" [When a new node is added to the graph, the transformation of its neighbor link to the previous node is refined using ICP (laser scans required!).]
  102. Param: RGBD/NewMapOdomChangeDistance = "0" [A new map is created if a change of odometry translation greater than X m is detected (0 m = disabled).]
  103. Param: RGBD/OptimizeFromGraphEnd = "false" [Optimize graph from the newest node. If false, the graph is optimized from the oldest node of the current graph (this adds an overhead computation to detect to oldest mode of the current graph, but it can be useful to preserve the map referential from the oldest node). Warning when set to false: when some nodes are transferred, the first referential of the local map may change, resulting in momentary changes in robot/map position (which are annoying in teleoperation).]
  104. Param: RGBD/OptimizeMaxError = "1" [Reject loop closures if optimization error is greater than this value (0=disabled). This will help to detect when a wrong loop closure is added to the graph. Not compatible with "Optimizer/Robust" if enabled.]
  105. Param: RGBD/PlanAngularVelocity = "0" [Angular velocity (rad/sec) used to compute path weights.]
  106. Param: RGBD/PlanLinearVelocity = "0" [Linear velocity (m/sec) used to compute path weights.]
  107. Param: RGBD/PlanStuckIterations = "0" [Mark the current goal node on the path as unreachable if it is not updated after X iterations (0=disabled). If all upcoming nodes on the path are unreachabled, the plan fails.]
  108. Param: RGBD/ProximityAngle = "45" [Maximum angle (degrees) for visual proximity detection.]
  109. Param: RGBD/ProximityBySpace = "true" [Detection over locations (in Working Memory or STM) near in space.]
  110. Param: RGBD/ProximityByTime = "false" [Detection over all locations in STM.]
  111. Param: RGBD/ProximityMaxGraphDepth = "50" [Maximum depth from the current/last loop closure location and the local loop closure hypotheses. Set 0 to ignore.]
  112. Param: RGBD/ProximityPathFilteringRadius = "0.5" [Path filtering radius.]
  113. Param: RGBD/ProximityPathRawPosesUsed = "true" [When comparing to a local path, merge the scan using the odometry poses (with neighbor link optimizations) instead of the ones in the optimized local graph.]
  114. Param: RGBD/ScanMatchingIdsSavedInLinks = "true" [Save scan matching IDs in link's user data.]
  115. Param: Reg/Force3DoF = "false" [Force 3 degrees-of-freedom transform (3Dof: x,y and yaw). Parameters z, roll and pitch will be set to 0.]
  116. Param: Reg/Strategy = "0" [0=Vis, 1=Icp, 2=VisIcp]
  117. Param: Reg/VarianceFromInliersCount = "false" [Set variance as the inverse of the number of inliers. Otherwise, the variance is computed as the average 3D position error of the inliers.]
  118. Param: Rtabmap/CreateIntermediateNodes = "false" [Create intermediate nodes between loop closure detection. Only used when Rtabmap/DetectionRate>0.]
  119. Param: Rtabmap/DetectionRate = "1" [Detection rate. RTAB-Map will filter input images to satisfy this rate.]
  120. Param: Rtabmap/ImageBufferSize = "1" [Data buffer size (0 min inf).]
  121. Param: Rtabmap/LoopRatio = "0" [The loop closure hypothesis must be over LoopRatio x lastHypothesisValue.]
  122. Param: Rtabmap/LoopThr = "0.11" [Loop closing threshold.]
  123. Param: Rtabmap/MaxRetrieved = "2" [Maximum locations retrieved at the same time from LTM.]
  124. Param: Rtabmap/MemoryThr = "0" [Maximum signatures in the Working Memory (ms) (0 means infinity).]
  125. Param: Rtabmap/PublishLastSignature = "true" [Publishing last signature.]
  126. Param: Rtabmap/PublishLikelihood = "true" [Publishing likelihood.]
  127. Param: Rtabmap/PublishPdf = "true" [Publishing pdf.]
  128. Param: Rtabmap/PublishStats = "true" [Publishing statistics.]
  129. Param: Rtabmap/StartNewMapOnLoopClosure = "false" [Start a new map only if there is a global loop closure with a previous map.]
  130. Param: Rtabmap/StatisticLogged = "false" [Logging enabled.]
  131. Param: Rtabmap/StatisticLoggedHeaders = "true" [Add column header description to log files.]
  132. Param: Rtabmap/StatisticLogsBufferedInRAM = "true" [Statistic logs buffered in RAM instead of written to hard drive after each iteration.]
  133. Param: Rtabmap/TimeThr = "0" [Maximum time allowed for the detector (ms) (0 means infinity).]
  134. Param: Rtabmap/VhStrategy = "0" [None 0, Similarity 1, Epipolar 2.]
  135. Param: Rtabmap/WorkingDirectory = "/home/gijs/.ros" [Working directory.]
  136. Param: SIFT/ContrastThreshold = "0.04" [The contrast threshold used to filter out weak features in semi-uniform (low-contrast) regions. The larger the threshold, the less features are produced by the detector.]
  137. Param: SIFT/EdgeThreshold = "10" [The threshold used to filter out edge-like features. Note that the its meaning is different from the contrastThreshold, i.e. the larger the edgeThreshold, the less features are filtered out (more features are retained).]
  138. Param: SIFT/NFeatures = "0" [The number of best features to retain. The features are ranked by their scores (measured in SIFT algorithm as the local contrast).]
  139. Param: SIFT/NOctaveLayers = "3" [The number of layers in each octave. 3 is the value used in D. Lowe paper. The number of octaves is computed automatically from the image resolution.]
  140. Param: SIFT/Sigma = "1.6" [The sigma of the Gaussian applied to the input image at the octave #0. If your image is captured with a weak camera with soft lenses, you might want to reduce the number.]
  141. Param: SURF/Extended = "false" [Extended descriptor flag (true - use extended 128-element descriptors; false - use 64-element descriptors).]
  142. Param: SURF/GpuKeypointsRatio = "0.01" [Used with SURF GPU.]
  143. Param: SURF/GpuVersion = "false" [GPU-SURF: Use GPU version of SURF. This option is enabled only if OpenCV is built with CUDA and GPUs are detected.]
  144. Param: SURF/HessianThreshold = "500" [Threshold for hessian keypoint detector used in SURF.]
  145. Param: SURF/OctaveLayers = "2" [Number of octave layers within each octave.]
  146. Param: SURF/Octaves = "4" [Number of pyramid octaves the keypoint detector will use.]
  147. Param: SURF/Upright = "false" [Up-right or rotated features flag (true - do not compute orientation of features; false - compute orientation).]
  148. Param: Stereo/Eps = "0.01" [[Stereo/OpticalFlow = true] Epsilon stop criterion.]
  149. Param: Stereo/Iterations = "30" [Maximum iterations.]
  150. Param: Stereo/MaxDisparity = "128" [Maximum disparity.]
  151. Param: Stereo/MaxLevel = "3" [Maximum pyramid level.]
  152. Param: Stereo/MinDisparity = "1" [Minimum disparity.]
  153. Param: Stereo/OpticalFlow = "true" [Use optical flow to find stereo correspondences, otherwise a simple block matching approach is used.]
  154. Param: Stereo/SSD = "true" [[Stereo/OpticalFlow = false] Use Sum of Squared Differences (SSD) window, otherwise Sum of Absolute Differences (SAD) window is used.]
  155. Param: Stereo/WinHeight = "3" [Window height.]
  156. Param: Stereo/WinWidth = "15" [Window width.]
  157. Param: StereoBM/BlockSize = "15" [See cv::StereoBM]
  158. Param: StereoBM/MinDisparity = "0" [See cv::StereoBM]
  159. Param: StereoBM/NumDisparities = "64" [See cv::StereoBM]
  160. Param: StereoBM/PreFilterCap = "31" [See cv::StereoBM]
  161. Param: StereoBM/PreFilterSize = "9" [See cv::StereoBM]
  162. Param: StereoBM/SpeckleRange = "4" [See cv::StereoBM]
  163. Param: StereoBM/SpeckleWindowSize = "100" [See cv::StereoBM]
  164. Param: StereoBM/TextureThreshold = "10" [See cv::StereoBM]
  165. Param: StereoBM/UniquenessRatio = "15" [See cv::StereoBM]
  166. Param: VhEp/MatchCountMin = "8" [Minimum of matching visual words pairs to accept the loop hypothesis.]
  167. Param: VhEp/RansacParam1 = "3" [Fundamental matrix (see cvFindFundamentalMat()): Max distance (in pixels) from the epipolar line for a point to be inlier.]
  168. Param: VhEp/RansacParam2 = "0.99" [Fundamental matrix (see cvFindFundamentalMat()): Performance of the RANSAC.]
  169. Param: Vis/CorFlowEps = "0.01" [[Vis/CorrespondenceType=1] See cv::calcOpticalFlowPyrLK(). Used for optical flow approach.]
  170. Param: Vis/CorFlowIterations = "30" [[Vis/CorrespondenceType=1] See cv::calcOpticalFlowPyrLK(). Used for optical flow approach.]
  171. Param: Vis/CorFlowMaxLevel = "3" [[Vis/CorrespondenceType=1] See cv::calcOpticalFlowPyrLK(). Used for optical flow approach.]
  172. Param: Vis/CorFlowWinSize = "16" [[Vis/CorrespondenceType=1] See cv::calcOpticalFlowPyrLK(). Used for optical flow approach.]
  173. Param: Vis/CorGuessWinSize = "50" [[Vis/CorrespondenceType=0] Matching window size (pixels) around projected points when a guess transform is provided to find correspondences. 0 means disabled.]
  174. Param: Vis/CorNNDR = "0.8" [[Vis/CorrespondenceType=0] NNDR: nearest neighbor distance ratio. Used for features matching approach.]
  175. Param: Vis/CorNNType = "1" [[Vis/CorrespondenceType=0] kNNFlannNaive=0, kNNFlannKdTree=1, kNNFlannLSH=2, kNNBruteForce=3, kNNBruteForceGPU=4. Used for features matching approach.]
  176. Param: Vis/CorType = "0" [Correspondences computation approach: 0=Features Matching, 1=Optical Flow]
  177. Param: Vis/EpipolarGeometryVar = "0.02" [[Vis/EstimationType = 2] Epipolar geometry maximum variance to accept the transformation.]
  178. Param: Vis/EstimationType = "0" [Motion estimation approach: 0:3D->3D, 1:3D->2D (PnP), 2:2D->2D (Epipolar Geometry)]
  179. Param: Vis/FeatureType = "6" [0=SURF 1=SIFT 2=ORB 3=FAST/FREAK 4=FAST/BRIEF 5=GFTT/FREAK 6=GFTT/BRIEF 7=BRISK 8=GFTT/ORB.]
  180. Param: Vis/ForwardEstOnly = "true" [Forward estimation only (A->B). If false, a transformation is also computed in backward direction (B->A), then the two resulting transforms are merged (middle interpolation between the transforms).]
  181. Param: Vis/InlierDistance = "0.1" [[Vis/EstimationType = 0] Maximum distance for feature correspondences. Used by 3D->3D estimation approach.]
  182. Param: Vis/Iterations = "100" [Maximum iterations to compute the transform.]
  183. Param: Vis/MaxDepth = "0" [Max depth of the features (0 means no limit).]
  184. Param: Vis/MaxFeatures = "1000" [0 no limits.]
  185. Param: Vis/MinDepth = "0" [Min depth of the features (0 means no limit).]
  186. Param: Vis/MinInliers = "20" [Minimum feature correspondences to compute/accept the transformation.]
  187. Param: Vis/PnPFlags = "1" [[Vis/EstimationType = 1] PnP flags: 0=Iterative, 1=EPNP, 2=P3P]
  188. Param: Vis/PnPRefineIterations = "1" [[Vis/EstimationType = 1] Refine iterations.]
  189. Param: Vis/PnPReprojError = "2" [[Vis/EstimationType = 1] PnP reprojection error.]
  190. Param: Vis/RefineIterations = "5" [[Vis/EstimationType = 0] Number of iterations used to refine the transformation found by RANSAC. 0 means that the transformation is not refined.]
  191. Param: Vis/RoiRatios = "0.0 0.0 0.0 0.0" [Region of interest ratios [left, right, top, bottom].]
  192. Param: Vis/SubPixEps = "0.02" [See cv::cornerSubPix().]
  193. Param: Vis/SubPixIterations = "0" [See cv::cornerSubPix(). 0 disables sub pixel refining.]
  194. Param: Vis/SubPixWinSize = "3" [See cv::cornerSubPix().]
  195. Param: g2o/Optimizer = "0" [0=Levenberg 1=GaussNewton]
  196. Param: g2o/PixelVariance = "1" [Pixel variance used for SBA.]
  197. Param: g2o/Solver = "0" [0=csparse 1=pcg 2=cholmod]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement