├── CMakeLists.txt ├── Dependencies.md ├── README.md ├── Thirdparty ├── DBoW2 │ ├── CMakeLists.txt │ ├── DBoW2 │ │ ├── BowVector.cpp │ │ ├── BowVector.h │ │ ├── FClass.h │ │ ├── FORB.cpp │ │ ├── FORB.h │ │ ├── FeatureVector.cpp │ │ ├── FeatureVector.h │ │ ├── ScoringObject.cpp │ │ ├── ScoringObject.h │ │ ├── TemplatedVocabulary.h │ │ └── TemplatedVocabulary.h~ │ ├── DUtils │ │ ├── Random.cpp │ │ ├── Random.h │ │ ├── Timestamp.cpp │ │ └── Timestamp.h │ ├── LICENSE.txt │ ├── README.txt │ ├── build │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 2.8.12.2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── DBoW2.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DBoW2 │ │ │ │ │ ├── BowVector.cpp.o │ │ │ │ │ ├── FORB.cpp.o │ │ │ │ │ ├── FeatureVector.cpp.o │ │ │ │ │ └── ScoringObject.cpp.o │ │ │ │ ├── DUtils │ │ │ │ │ ├── Random.cpp.o │ │ │ │ │ └── Timestamp.cpp.o │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ └── progress.marks │ │ ├── Makefile │ │ └── cmake_install.cmake │ └── lib │ │ └── libDBoW2.so └── g2o │ ├── CMakeLists.txt │ ├── README.txt │ ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 2.8.12.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── g2o.dir │ │ │ ├── C.includecache │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── g2o │ │ │ │ ├── core │ │ │ │ │ ├── batch_stats.cpp.o │ │ │ │ │ ├── cache.cpp.o │ │ │ │ │ ├── estimate_propagator.cpp.o │ │ │ │ │ ├── factory.cpp.o │ │ │ │ │ ├── hyper_dijkstra.cpp.o │ │ │ │ │ ├── hyper_graph.cpp.o │ │ │ │ │ ├── hyper_graph_action.cpp.o │ │ │ │ │ ├── jacobian_workspace.cpp.o │ │ │ │ │ ├── marginal_covariance_cholesky.cpp.o │ │ │ │ │ ├── matrix_structure.cpp.o │ │ │ │ │ ├── optimizable_graph.cpp.o │ │ │ │ │ ├── optimization_algorithm.cpp.o │ │ │ │ │ ├── optimization_algorithm_factory.cpp.o │ │ │ │ │ ├── optimization_algorithm_levenberg.cpp.o │ │ │ │ │ ├── optimization_algorithm_with_hessian.cpp.o │ │ │ │ │ ├── parameter.cpp.o │ │ │ │ │ ├── parameter_container.cpp.o │ │ │ │ │ ├── robust_kernel.cpp.o │ │ │ │ │ ├── robust_kernel_factory.cpp.o │ │ │ │ │ ├── robust_kernel_impl.cpp.o │ │ │ │ │ ├── solver.cpp.o │ │ │ │ │ └── sparse_optimizer.cpp.o │ │ │ │ ├── stuff │ │ │ │ │ ├── os_specific.c.o │ │ │ │ │ ├── property.cpp.o │ │ │ │ │ ├── string_tools.cpp.o │ │ │ │ │ └── timeutil.cpp.o │ │ │ │ └── types │ │ │ │ │ ├── types_sba.cpp.o │ │ │ │ │ ├── types_seven_dof_expmap.cpp.o │ │ │ │ │ └── types_six_dof_expmap.cpp.o │ │ │ ├── link.txt │ │ │ └── progress.make │ │ └── progress.marks │ ├── Makefile │ └── cmake_install.cmake │ ├── cmake_modules │ ├── FindBLAS.cmake │ ├── FindEigen3.cmake │ └── FindLAPACK.cmake │ ├── config.h │ ├── config.h.in │ ├── g2o │ ├── core │ │ ├── base_binary_edge.h │ │ ├── base_binary_edge.hpp │ │ ├── base_edge.h │ │ ├── base_multi_edge.h │ │ ├── base_multi_edge.hpp │ │ ├── base_unary_edge.h │ │ ├── base_unary_edge.hpp │ │ ├── base_vertex.h │ │ ├── base_vertex.hpp │ │ ├── batch_stats.cpp │ │ ├── batch_stats.h │ │ ├── block_solver.h │ │ ├── block_solver.hpp │ │ ├── cache.cpp │ │ ├── cache.h │ │ ├── creators.h │ │ ├── eigen_types.h │ │ ├── estimate_propagator.cpp │ │ ├── estimate_propagator.h │ │ ├── factory.cpp │ │ ├── factory.h │ │ ├── hyper_dijkstra.cpp │ │ ├── hyper_dijkstra.h │ │ ├── hyper_graph.cpp │ │ ├── hyper_graph.h │ │ ├── hyper_graph_action.cpp │ │ ├── hyper_graph_action.h │ │ ├── jacobian_workspace.cpp │ │ ├── jacobian_workspace.h │ │ ├── linear_solver.h │ │ ├── marginal_covariance_cholesky.cpp │ │ ├── marginal_covariance_cholesky.h │ │ ├── matrix_operations.h │ │ ├── matrix_structure.cpp │ │ ├── matrix_structure.h │ │ ├── openmp_mutex.h │ │ ├── optimizable_graph.cpp │ │ ├── optimizable_graph.h │ │ ├── optimization_algorithm.cpp │ │ ├── optimization_algorithm.h │ │ ├── optimization_algorithm_dogleg.cpp │ │ ├── optimization_algorithm_dogleg.h │ │ ├── optimization_algorithm_factory.cpp │ │ ├── optimization_algorithm_factory.h │ │ ├── optimization_algorithm_gauss_newton.cpp │ │ ├── optimization_algorithm_gauss_newton.h │ │ ├── optimization_algorithm_levenberg.cpp │ │ ├── optimization_algorithm_levenberg.h │ │ ├── optimization_algorithm_property.h │ │ ├── optimization_algorithm_with_hessian.cpp │ │ ├── optimization_algorithm_with_hessian.h │ │ ├── parameter.cpp │ │ ├── parameter.h │ │ ├── parameter_container.cpp │ │ ├── parameter_container.h │ │ ├── robust_kernel.cpp │ │ ├── robust_kernel.h │ │ ├── robust_kernel_factory.cpp │ │ ├── robust_kernel_factory.h │ │ ├── robust_kernel_impl.cpp │ │ ├── robust_kernel_impl.h │ │ ├── solver.cpp │ │ ├── solver.h │ │ ├── sparse_block_matrix.h │ │ ├── sparse_block_matrix.hpp │ │ ├── sparse_block_matrix_ccs.h │ │ ├── sparse_block_matrix_diagonal.h │ │ ├── sparse_block_matrix_test.cpp │ │ ├── sparse_optimizer.cpp │ │ └── sparse_optimizer.h │ ├── solvers │ │ ├── linear_solver_dense.h │ │ └── linear_solver_eigen.h │ ├── stuff │ │ ├── color_macros.h │ │ ├── macros.h │ │ ├── misc.h │ │ ├── os_specific.c │ │ ├── os_specific.h │ │ ├── property.cpp │ │ ├── property.h │ │ ├── string_tools.cpp │ │ ├── string_tools.h │ │ ├── timeutil.cpp │ │ └── timeutil.h │ └── types │ │ ├── se3_ops.h │ │ ├── se3_ops.hpp │ │ ├── se3quat.h │ │ ├── sim3.h │ │ ├── types_sba.cpp │ │ ├── types_sba.h │ │ ├── types_seven_dof_expmap.cpp │ │ ├── types_seven_dof_expmap.h │ │ ├── types_six_dof_expmap.cpp │ │ └── types_six_dof_expmap.h │ ├── lib │ └── libg2o.so │ └── license-bsd.txt ├── Vocabulary ├── ORBvoc.bin └── bin_vocabulary.cc ├── cmake_modules └── FindEigen3.cmake ├── config ├── EuRoC_stereo_orginal.yaml ├── EuRoC_stereo_orginal.yaml~ ├── EuRoC_stereo_viconRoom.yaml ├── EuRoC_stereo_viconRoom.yaml~ ├── Euroc.yaml ├── Euroc.yaml~ ├── KITTI00-00.yaml~ ├── KITTI00-07.yaml~ ├── KITTI00.yaml ├── KITTI00.yaml~ ├── KITTI01.yaml ├── KITTI01.yaml~ ├── KITTI02.yaml ├── KITTI02.yaml~ ├── KITTI03.yaml ├── KITTI03.yaml~ ├── KITTI04.yaml ├── KITTI04.yaml~ ├── KITTI05.yaml ├── KITTI05.yaml~ ├── KITTI06.yaml ├── KITTI06.yaml~ ├── KITTI07.yaml ├── KITTI07.yaml~ ├── KITTI08.yaml ├── KITTI08.yaml~ ├── KITTI09.yaml ├── KITTI09.yaml~ ├── KITTI10.yaml ├── KITTI10.yaml~ ├── TUM1.yaml ├── TUM2.yaml ├── TUM3.yaml ├── VI.yaml~ ├── myVI.yaml ├── stereo_NewCollege.yaml ├── stereo_NewCollege.yaml~ ├── stereo_RI.yaml └── stereo_RI.yaml~ ├── launch ├── Euroc.launch~ ├── Euroc_mono.launch ├── Euroc_stereo.launch ├── Euroc_stereo.launch~ ├── Euroc_stereo_offline.launch ├── Euroc_stereo_offline.launch~ ├── Euroc_stereo_offline_RI.launch~ ├── Euroc_stereo_offline_viconRoom.launch ├── VI.launch ├── VI.launch~ ├── stereo_offline_RI.launch └── stereo_offline_RI.launch~ ├── package.xml ├── ros_stereo_kitti.cc ├── ros_stereo_offline.cc ├── src ├── Converter.cc ├── Converter.h ├── FColorMap.cpp ├── FColorMap.h ├── Frame.cc ├── Frame.h ├── FrameDrawer.cc ├── FrameDrawer.h ├── Initializer.cc ├── Initializer.h ├── KeyFrame.cc ├── KeyFrame.h ├── KeyFrameDatabase.cc ├── KeyFrameDatabase.h ├── LocalMapping.cc ├── LocalMapping.h ├── LocalMeshing.cc ├── LocalMeshing.h ├── LoopClosing.cc ├── LoopClosing.h ├── Map.cc ├── Map.h ├── MapDrawer.cc ├── MapDrawer.h ├── MapPoint.cc ├── MapPoint.h ├── ORBVocabulary.h ├── ORBextractor.cc ├── ORBextractor.h ├── ORBmatcher.cc ├── ORBmatcher.h ├── Optimizer.cc ├── Optimizer.h ├── PnPsolver.cc ├── PnPsolver.h ├── Sim3Solver.cc ├── Sim3Solver.h ├── System.cc ├── System.h ├── Tracking.cc ├── Tracking.h ├── Viewer.cc ├── Viewer.h ├── dataStructure.h ├── delaunay │ ├── CLB_IO.h │ ├── Exception.cpp │ ├── Exception.h │ ├── GraphWrapper_Boost.cc │ ├── GraphWrapper_Boost.h │ ├── Matrix.cc │ ├── Matrix.h │ ├── Matrix_vect_private.cc │ ├── StringFunctions.cpp │ ├── StringFunctions.h │ ├── lapack_declarations.h │ ├── lovimath.cc │ └── lovimath.h └── mydatastructure.h └── tools ├── bin_vocabulary └── bin_vocabulary.cc /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Dependencies.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/README.md -------------------------------------------------------------------------------- /Thirdparty/DBoW2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/CMakeLists.txt -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/BowVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/BowVector.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/BowVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/BowVector.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/FClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/FClass.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/FORB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/FORB.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/FORB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/FORB.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/FeatureVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/FeatureVector.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/FeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/FeatureVector.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/ScoringObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/ScoringObject.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/ScoringObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/ScoringObject.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/TemplatedVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/TemplatedVocabulary.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DBoW2/TemplatedVocabulary.h~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DBoW2/TemplatedVocabulary.h~ -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DUtils/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DUtils/Random.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DUtils/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DUtils/Random.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DUtils/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DUtils/Timestamp.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/DUtils/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/DUtils/Timestamp.h -------------------------------------------------------------------------------- /Thirdparty/DBoW2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/LICENSE.txt -------------------------------------------------------------------------------- /Thirdparty/DBoW2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/README.txt -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeCache.txt -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/CXX.includecache -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/BowVector.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/BowVector.cpp.o -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/FORB.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/FORB.cpp.o -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/FeatureVector.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/FeatureVector.cpp.o -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/ScoringObject.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DBoW2/ScoringObject.cpp.o -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DUtils/Random.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DUtils/Random.cpp.o -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DUtils/Timestamp.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DUtils/Timestamp.cpp.o -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/build.make -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/depend.internal -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/depend.make -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/flags.make -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/link.txt -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/DBoW2.dir/progress.make -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/Makefile -------------------------------------------------------------------------------- /Thirdparty/DBoW2/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/build/cmake_install.cmake -------------------------------------------------------------------------------- /Thirdparty/DBoW2/lib/libDBoW2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/DBoW2/lib/libDBoW2.so -------------------------------------------------------------------------------- /Thirdparty/g2o/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/CMakeLists.txt -------------------------------------------------------------------------------- /Thirdparty/g2o/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/README.txt -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeCache.txt -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdC/CMakeCCompilerId.c -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/2.8.12.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/C.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/C.includecache -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/CXX.includecache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/CXX.includecache -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/build.make -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/depend.internal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/depend.internal -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/depend.make -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/flags.make -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/batch_stats.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/batch_stats.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/cache.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/cache.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/estimate_propagator.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/estimate_propagator.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/factory.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/factory.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/hyper_dijkstra.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/hyper_dijkstra.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/hyper_graph.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/hyper_graph.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/hyper_graph_action.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/hyper_graph_action.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/jacobian_workspace.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/jacobian_workspace.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/marginal_covariance_cholesky.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/marginal_covariance_cholesky.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/matrix_structure.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/matrix_structure.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimizable_graph.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimizable_graph.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm_factory.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm_factory.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm_levenberg.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm_levenberg.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm_with_hessian.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/optimization_algorithm_with_hessian.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/parameter.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/parameter.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/parameter_container.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/parameter_container.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/robust_kernel.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/robust_kernel.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/robust_kernel_factory.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/robust_kernel_factory.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/robust_kernel_impl.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/robust_kernel_impl.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/solver.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/solver.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/sparse_optimizer.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/core/sparse_optimizer.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/os_specific.c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/os_specific.c.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/property.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/property.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/string_tools.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/string_tools.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/timeutil.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/stuff/timeutil.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/types/types_sba.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/types/types_sba.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/types/types_seven_dof_expmap.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/types/types_seven_dof_expmap.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/types/types_six_dof_expmap.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/g2o/types/types_six_dof_expmap.cpp.o -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/link.txt -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/g2o.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/CMakeFiles/g2o.dir/progress.make -------------------------------------------------------------------------------- /Thirdparty/g2o/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 29 2 | -------------------------------------------------------------------------------- /Thirdparty/g2o/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/Makefile -------------------------------------------------------------------------------- /Thirdparty/g2o/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/build/cmake_install.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/cmake_modules/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/cmake_modules/FindBLAS.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/cmake_modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/cmake_modules/FindEigen3.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/cmake_modules/FindLAPACK.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/cmake_modules/FindLAPACK.cmake -------------------------------------------------------------------------------- /Thirdparty/g2o/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/config.h -------------------------------------------------------------------------------- /Thirdparty/g2o/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/config.h.in -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_binary_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_binary_edge.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_binary_edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_binary_edge.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_edge.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_multi_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_multi_edge.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_multi_edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_multi_edge.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_unary_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_unary_edge.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_unary_edge.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_unary_edge.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_vertex.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/base_vertex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/base_vertex.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/batch_stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/batch_stats.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/batch_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/batch_stats.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/block_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/block_solver.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/block_solver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/block_solver.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/cache.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/cache.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/creators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/creators.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/eigen_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/eigen_types.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/estimate_propagator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/estimate_propagator.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/estimate_propagator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/estimate_propagator.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/factory.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/factory.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/hyper_dijkstra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/hyper_dijkstra.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/hyper_dijkstra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/hyper_dijkstra.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/hyper_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/hyper_graph.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/hyper_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/hyper_graph.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/hyper_graph_action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/hyper_graph_action.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/hyper_graph_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/hyper_graph_action.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/jacobian_workspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/jacobian_workspace.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/jacobian_workspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/jacobian_workspace.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/linear_solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/linear_solver.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/marginal_covariance_cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/marginal_covariance_cholesky.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/marginal_covariance_cholesky.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/marginal_covariance_cholesky.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/matrix_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/matrix_operations.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/matrix_structure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/matrix_structure.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/matrix_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/matrix_structure.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/openmp_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/openmp_mutex.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimizable_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimizable_graph.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimizable_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimizable_graph.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_dogleg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_dogleg.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_dogleg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_dogleg.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_factory.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_factory.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_gauss_newton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_gauss_newton.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_gauss_newton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_gauss_newton.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_levenberg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_levenberg.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_levenberg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_levenberg.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_property.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_with_hessian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_with_hessian.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/optimization_algorithm_with_hessian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/optimization_algorithm_with_hessian.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/parameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/parameter.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/parameter.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/parameter_container.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/parameter_container.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/parameter_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/parameter_container.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/robust_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/robust_kernel.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/robust_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/robust_kernel.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/robust_kernel_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/robust_kernel_factory.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/robust_kernel_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/robust_kernel_factory.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/robust_kernel_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/robust_kernel_impl.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/robust_kernel_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/robust_kernel_impl.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/solver.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/solver.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_block_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_block_matrix.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_block_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_block_matrix.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_block_matrix_ccs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_block_matrix_ccs.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_block_matrix_diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_block_matrix_diagonal.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_block_matrix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_block_matrix_test.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_optimizer.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/core/sparse_optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/core/sparse_optimizer.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/solvers/linear_solver_dense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/solvers/linear_solver_dense.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/solvers/linear_solver_eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/solvers/linear_solver_eigen.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/color_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/color_macros.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/macros.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/misc.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/os_specific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/os_specific.c -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/os_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/os_specific.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/property.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/property.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/string_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/string_tools.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/string_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/string_tools.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/timeutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/timeutil.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/stuff/timeutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/stuff/timeutil.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/se3_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/se3_ops.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/se3_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/se3_ops.hpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/se3quat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/se3quat.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/sim3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/sim3.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/types_sba.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/types_sba.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/types_sba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/types_sba.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/types_seven_dof_expmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/types_seven_dof_expmap.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/types_seven_dof_expmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/types_seven_dof_expmap.h -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/types_six_dof_expmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/types_six_dof_expmap.cpp -------------------------------------------------------------------------------- /Thirdparty/g2o/g2o/types/types_six_dof_expmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/g2o/types/types_six_dof_expmap.h -------------------------------------------------------------------------------- /Thirdparty/g2o/lib/libg2o.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/lib/libg2o.so -------------------------------------------------------------------------------- /Thirdparty/g2o/license-bsd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Thirdparty/g2o/license-bsd.txt -------------------------------------------------------------------------------- /Vocabulary/ORBvoc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Vocabulary/ORBvoc.bin -------------------------------------------------------------------------------- /Vocabulary/bin_vocabulary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/Vocabulary/bin_vocabulary.cc -------------------------------------------------------------------------------- /cmake_modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/cmake_modules/FindEigen3.cmake -------------------------------------------------------------------------------- /config/EuRoC_stereo_orginal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/EuRoC_stereo_orginal.yaml -------------------------------------------------------------------------------- /config/EuRoC_stereo_orginal.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/EuRoC_stereo_orginal.yaml~ -------------------------------------------------------------------------------- /config/EuRoC_stereo_viconRoom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/EuRoC_stereo_viconRoom.yaml -------------------------------------------------------------------------------- /config/EuRoC_stereo_viconRoom.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/EuRoC_stereo_viconRoom.yaml~ -------------------------------------------------------------------------------- /config/Euroc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/Euroc.yaml -------------------------------------------------------------------------------- /config/Euroc.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/Euroc.yaml~ -------------------------------------------------------------------------------- /config/KITTI00-00.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI00-00.yaml~ -------------------------------------------------------------------------------- /config/KITTI00-07.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI00-07.yaml~ -------------------------------------------------------------------------------- /config/KITTI00.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI00.yaml -------------------------------------------------------------------------------- /config/KITTI00.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI00.yaml~ -------------------------------------------------------------------------------- /config/KITTI01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI01.yaml -------------------------------------------------------------------------------- /config/KITTI01.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI01.yaml~ -------------------------------------------------------------------------------- /config/KITTI02.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI02.yaml -------------------------------------------------------------------------------- /config/KITTI02.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI02.yaml~ -------------------------------------------------------------------------------- /config/KITTI03.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI03.yaml -------------------------------------------------------------------------------- /config/KITTI03.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI03.yaml~ -------------------------------------------------------------------------------- /config/KITTI04.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI04.yaml -------------------------------------------------------------------------------- /config/KITTI04.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI04.yaml~ -------------------------------------------------------------------------------- /config/KITTI05.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI05.yaml -------------------------------------------------------------------------------- /config/KITTI05.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI05.yaml~ -------------------------------------------------------------------------------- /config/KITTI06.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI06.yaml -------------------------------------------------------------------------------- /config/KITTI06.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI06.yaml~ -------------------------------------------------------------------------------- /config/KITTI07.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI07.yaml -------------------------------------------------------------------------------- /config/KITTI07.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI07.yaml~ -------------------------------------------------------------------------------- /config/KITTI08.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI08.yaml -------------------------------------------------------------------------------- /config/KITTI08.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI08.yaml~ -------------------------------------------------------------------------------- /config/KITTI09.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI09.yaml -------------------------------------------------------------------------------- /config/KITTI09.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI09.yaml~ -------------------------------------------------------------------------------- /config/KITTI10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI10.yaml -------------------------------------------------------------------------------- /config/KITTI10.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/KITTI10.yaml~ -------------------------------------------------------------------------------- /config/TUM1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/TUM1.yaml -------------------------------------------------------------------------------- /config/TUM2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/TUM2.yaml -------------------------------------------------------------------------------- /config/TUM3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/TUM3.yaml -------------------------------------------------------------------------------- /config/VI.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/VI.yaml~ -------------------------------------------------------------------------------- /config/myVI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/myVI.yaml -------------------------------------------------------------------------------- /config/stereo_NewCollege.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/stereo_NewCollege.yaml -------------------------------------------------------------------------------- /config/stereo_NewCollege.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/stereo_NewCollege.yaml~ -------------------------------------------------------------------------------- /config/stereo_RI.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/stereo_RI.yaml -------------------------------------------------------------------------------- /config/stereo_RI.yaml~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/config/stereo_RI.yaml~ -------------------------------------------------------------------------------- /launch/Euroc.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc.launch~ -------------------------------------------------------------------------------- /launch/Euroc_mono.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_mono.launch -------------------------------------------------------------------------------- /launch/Euroc_stereo.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_stereo.launch -------------------------------------------------------------------------------- /launch/Euroc_stereo.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_stereo.launch~ -------------------------------------------------------------------------------- /launch/Euroc_stereo_offline.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_stereo_offline.launch -------------------------------------------------------------------------------- /launch/Euroc_stereo_offline.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_stereo_offline.launch~ -------------------------------------------------------------------------------- /launch/Euroc_stereo_offline_RI.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_stereo_offline_RI.launch~ -------------------------------------------------------------------------------- /launch/Euroc_stereo_offline_viconRoom.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/Euroc_stereo_offline_viconRoom.launch -------------------------------------------------------------------------------- /launch/VI.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/VI.launch -------------------------------------------------------------------------------- /launch/VI.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/VI.launch~ -------------------------------------------------------------------------------- /launch/stereo_offline_RI.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/stereo_offline_RI.launch -------------------------------------------------------------------------------- /launch/stereo_offline_RI.launch~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/launch/stereo_offline_RI.launch~ -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/package.xml -------------------------------------------------------------------------------- /ros_stereo_kitti.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/ros_stereo_kitti.cc -------------------------------------------------------------------------------- /ros_stereo_offline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/ros_stereo_offline.cc -------------------------------------------------------------------------------- /src/Converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Converter.cc -------------------------------------------------------------------------------- /src/Converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Converter.h -------------------------------------------------------------------------------- /src/FColorMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/FColorMap.cpp -------------------------------------------------------------------------------- /src/FColorMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/FColorMap.h -------------------------------------------------------------------------------- /src/Frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Frame.cc -------------------------------------------------------------------------------- /src/Frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Frame.h -------------------------------------------------------------------------------- /src/FrameDrawer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/FrameDrawer.cc -------------------------------------------------------------------------------- /src/FrameDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/FrameDrawer.h -------------------------------------------------------------------------------- /src/Initializer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Initializer.cc -------------------------------------------------------------------------------- /src/Initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Initializer.h -------------------------------------------------------------------------------- /src/KeyFrame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/KeyFrame.cc -------------------------------------------------------------------------------- /src/KeyFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/KeyFrame.h -------------------------------------------------------------------------------- /src/KeyFrameDatabase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/KeyFrameDatabase.cc -------------------------------------------------------------------------------- /src/KeyFrameDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/KeyFrameDatabase.h -------------------------------------------------------------------------------- /src/LocalMapping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/LocalMapping.cc -------------------------------------------------------------------------------- /src/LocalMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/LocalMapping.h -------------------------------------------------------------------------------- /src/LocalMeshing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/LocalMeshing.cc -------------------------------------------------------------------------------- /src/LocalMeshing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/LocalMeshing.h -------------------------------------------------------------------------------- /src/LoopClosing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/LoopClosing.cc -------------------------------------------------------------------------------- /src/LoopClosing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/LoopClosing.h -------------------------------------------------------------------------------- /src/Map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Map.cc -------------------------------------------------------------------------------- /src/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Map.h -------------------------------------------------------------------------------- /src/MapDrawer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/MapDrawer.cc -------------------------------------------------------------------------------- /src/MapDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/MapDrawer.h -------------------------------------------------------------------------------- /src/MapPoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/MapPoint.cc -------------------------------------------------------------------------------- /src/MapPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/MapPoint.h -------------------------------------------------------------------------------- /src/ORBVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/ORBVocabulary.h -------------------------------------------------------------------------------- /src/ORBextractor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/ORBextractor.cc -------------------------------------------------------------------------------- /src/ORBextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/ORBextractor.h -------------------------------------------------------------------------------- /src/ORBmatcher.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/ORBmatcher.cc -------------------------------------------------------------------------------- /src/ORBmatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/ORBmatcher.h -------------------------------------------------------------------------------- /src/Optimizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Optimizer.cc -------------------------------------------------------------------------------- /src/Optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Optimizer.h -------------------------------------------------------------------------------- /src/PnPsolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/PnPsolver.cc -------------------------------------------------------------------------------- /src/PnPsolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/PnPsolver.h -------------------------------------------------------------------------------- /src/Sim3Solver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Sim3Solver.cc -------------------------------------------------------------------------------- /src/Sim3Solver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Sim3Solver.h -------------------------------------------------------------------------------- /src/System.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/System.cc -------------------------------------------------------------------------------- /src/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/System.h -------------------------------------------------------------------------------- /src/Tracking.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Tracking.cc -------------------------------------------------------------------------------- /src/Tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Tracking.h -------------------------------------------------------------------------------- /src/Viewer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Viewer.cc -------------------------------------------------------------------------------- /src/Viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/Viewer.h -------------------------------------------------------------------------------- /src/dataStructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/dataStructure.h -------------------------------------------------------------------------------- /src/delaunay/CLB_IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/CLB_IO.h -------------------------------------------------------------------------------- /src/delaunay/Exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/Exception.cpp -------------------------------------------------------------------------------- /src/delaunay/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/Exception.h -------------------------------------------------------------------------------- /src/delaunay/GraphWrapper_Boost.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/GraphWrapper_Boost.cc -------------------------------------------------------------------------------- /src/delaunay/GraphWrapper_Boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/GraphWrapper_Boost.h -------------------------------------------------------------------------------- /src/delaunay/Matrix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/Matrix.cc -------------------------------------------------------------------------------- /src/delaunay/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/Matrix.h -------------------------------------------------------------------------------- /src/delaunay/Matrix_vect_private.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/Matrix_vect_private.cc -------------------------------------------------------------------------------- /src/delaunay/StringFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/StringFunctions.cpp -------------------------------------------------------------------------------- /src/delaunay/StringFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/StringFunctions.h -------------------------------------------------------------------------------- /src/delaunay/lapack_declarations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/lapack_declarations.h -------------------------------------------------------------------------------- /src/delaunay/lovimath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/lovimath.cc -------------------------------------------------------------------------------- /src/delaunay/lovimath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/delaunay/lovimath.h -------------------------------------------------------------------------------- /src/mydatastructure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/src/mydatastructure.h -------------------------------------------------------------------------------- /tools/bin_vocabulary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/tools/bin_vocabulary -------------------------------------------------------------------------------- /tools/bin_vocabulary.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HKUST-Aerial-Robotics/lightweight_mapping/HEAD/tools/bin_vocabulary.cc --------------------------------------------------------------------------------