mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-03 01:50:24 +08:00
* New rtabmap-reduceGraph CLI tool * fixed some edge cases * Regenerating optimized map if there was one before reducing the graph * addMoreLoopClosures: refactored how ctrl-c is handled to stop faster when no loop closures are added * Added kilted status * Make offline tool always propagate neighbor merged links * removed a parameter * fixed disconnected graph * fixed --help * Added error log on Kp/NNStrategy not compatible with huge vocabulary. ReduceGraph/DetectMoreLoopClosures: Make sure original parameters are saved back on closing. g2o: fixing optimizer to Levenberg for SBA to avoid [SetJac] infinite jac fatal error. * exposing neighbor merged ratio parameter to the tool * show param in log * refactored detectMoreLoopClosures to ignore too close nodes in terms of neighbor links based on Mem/STMSize parameter. Reduce graph: added direction parameter. * Simplified: removed ratio parameter, removed recursive reduction. Just don't reduce if a NM link is longer than maxDistance. * Removed NNStrategy override, as it was still done on closing when we changed back to original params * DBViewer: show missing links when showing OptimizedPoses in GraphView, fixed clicking on landmark links * DetectMoreLoopClosures: Added support for min graph distance option in MainWindow and DbViewer * slight renaming of ROS jobs * reprocess: added option --params_last
41 lines
1.1 KiB
CMake
41 lines
1.1 KiB
CMake
|
|
ADD_SUBDIRECTORY( ConsoleApp )
|
|
ADD_SUBDIRECTORY( ImagesJoiner )
|
|
ADD_SUBDIRECTORY( ExtractObject )
|
|
ADD_SUBDIRECTORY( Camera )
|
|
ADD_SUBDIRECTORY( StereoEval )
|
|
ADD_SUBDIRECTORY( KittiDataset )
|
|
ADD_SUBDIRECTORY( RgbdDataset )
|
|
ADD_SUBDIRECTORY( EurocDataset )
|
|
ADD_SUBDIRECTORY( CidSimsDataset )
|
|
ADD_SUBDIRECTORY( Recovery )
|
|
ADD_SUBDIRECTORY( Reprocess )
|
|
ADD_SUBDIRECTORY( DetectMoreLoopClosures )
|
|
ADD_SUBDIRECTORY( Export )
|
|
ADD_SUBDIRECTORY( Report )
|
|
ADD_SUBDIRECTORY( Info )
|
|
ADD_SUBDIRECTORY( CleanupLocalGrids )
|
|
ADD_SUBDIRECTORY( GlobalBundleAdjustment )
|
|
ADD_SUBDIRECTORY( ReduceGraph )
|
|
|
|
IF(OPENCV_NONFREE_FOUND)
|
|
ADD_SUBDIRECTORY( VocabularyComparison )
|
|
ENDIF(OPENCV_NONFREE_FOUND)
|
|
|
|
IF(TARGET rtabmap_gui)
|
|
ADD_SUBDIRECTORY( CameraRGBD )
|
|
IF(PCL_VERSION VERSION_GREATER_EQUAL "1.8")
|
|
ADD_SUBDIRECTORY( LidarViewer )
|
|
ENDIF()
|
|
ADD_SUBDIRECTORY( DatabaseViewer )
|
|
ADD_SUBDIRECTORY( EpipolarGeometry )
|
|
ADD_SUBDIRECTORY( OdometryViewer )
|
|
ADD_SUBDIRECTORY( DataRecorder )
|
|
ADD_SUBDIRECTORY( Calibration )
|
|
ADD_SUBDIRECTORY( Matcher )
|
|
ELSE()
|
|
MESSAGE(STATUS "RTAB-Map GUI lib is not built, some tools won't be built...")
|
|
ENDIF()
|
|
|
|
|