├── LICENCE ├── README.md ├── ar_demo ├── CMakeLists.txt ├── cmake │ └── FindEigen.cmake ├── launch │ ├── 3dm_bag.launch │ └── ar_rviz.launch ├── package.xml └── src │ └── ar_demo_node.cpp ├── benchmark_publisher ├── CMakeLists.txt ├── cmake │ └── FindEigen.cmake ├── config │ ├── MH_01_easy │ │ └── data.csv │ ├── MH_02_easy │ │ └── data.csv │ ├── MH_03_medium │ │ └── data.csv │ ├── MH_04_difficult │ │ └── data.csv │ ├── MH_05_difficult │ │ └── data.csv │ ├── V1_01_easy │ │ └── data.csv │ ├── V1_02_medium │ │ └── data.csv │ ├── V1_03_difficult │ │ └── data.csv │ ├── V2_01_easy │ │ └── data.csv │ ├── V2_02_medium │ │ └── data.csv │ └── V2_03_difficult │ │ └── data.csv ├── launch │ └── publish.launch ├── package.xml └── src │ └── benchmark_publisher_node.cpp ├── camera_model ├── CMakeLists.txt ├── cmake │ └── FindEigen.cmake ├── include │ └── camodocal │ │ ├── calib │ │ └── CameraCalibration.h │ │ ├── camera_models │ │ ├── Camera.h │ │ ├── CameraFactory.h │ │ ├── CataCamera.h │ │ ├── CostFunctionFactory.h │ │ ├── EquidistantCamera.h │ │ ├── PinholeCamera.h │ │ └── ScaramuzzaCamera.h │ │ ├── chessboard │ │ ├── Chessboard.h │ │ ├── ChessboardCorner.h │ │ ├── ChessboardQuad.h │ │ └── Spline.h │ │ ├── gpl │ │ ├── EigenQuaternionParameterization.h │ │ ├── EigenUtils.h │ │ └── gpl.h │ │ └── sparse_graph │ │ └── Transform.h ├── instruction ├── package.xml ├── readme.md └── src │ ├── calib │ └── CameraCalibration.cc │ ├── camera_models │ ├── Camera.cc │ ├── CameraFactory.cc │ ├── CataCamera.cc │ ├── CostFunctionFactory.cc │ ├── EquidistantCamera.cc │ ├── PinholeCamera.cc │ └── ScaramuzzaCamera.cc │ ├── chessboard │ └── Chessboard.cc │ ├── gpl │ ├── EigenQuaternionParameterization.cc │ └── gpl.cc │ ├── intrinsic_calib.cc │ └── sparse_graph │ └── Transform.cc ├── config ├── 3dm │ └── 3dm_config.yaml ├── AR_demo.rviz ├── black_box │ └── black_box_config.yaml ├── cla │ └── cla_config.yaml ├── euroc │ ├── euroc_config.yaml │ └── euroc_config_no_extrinsic.yaml ├── extrinsic_parameter_example.pdf ├── fisheye_mask.jpg ├── leatu_fisheye.rviz ├── realsense │ ├── leatu_fisheye.yaml │ ├── realsense_color_config.yaml │ └── realsense_fisheye_config.yaml └── vins_rviz_config.rviz ├── feature_tracker ├── CMakeLists.txt ├── cmake │ └── FindEigen.cmake ├── package.xml └── src │ ├── feature_tracker.cpp │ ├── feature_tracker.h │ ├── feature_tracker_node.cpp │ ├── parameters.cpp │ ├── parameters.h │ └── tic_toc.h ├── open_quadtree_mapping ├── CMakeLists.txt ├── CMakeLists0.txt ├── CMakeModules │ ├── FindCUDA.cmake │ ├── FindCUDA │ │ ├── make2cmake.cmake │ │ ├── parse_cubin.cmake │ │ └── run_nvcc.cmake │ └── FindEigen.cmake ├── README.md ├── fig │ ├── QuadtreeMapping.png │ └── cover.jpg ├── include │ ├── cuda_toolkit │ │ ├── exception.h │ │ ├── helper_math.h │ │ └── helper_timer.h │ └── quadmap │ │ ├── DepthSeed.cuh │ │ ├── camera_model │ │ └── pinhole_camera.cuh │ │ ├── check_cuda_device.cuh │ │ ├── cuda_exception.cuh │ │ ├── depthmap.h │ │ ├── depthmap_node.h │ │ ├── device_image.cuh │ │ ├── frameelement.cuh │ │ ├── helper_vector_types.cuh │ │ ├── match_parameter.cuh │ │ ├── matrix.cuh │ │ ├── pixel_cost.cuh │ │ ├── publisher.h │ │ ├── se3.cuh │ │ ├── seed_matrix.cuh │ │ ├── stereo_parameter.cuh │ │ └── texture_memory.cuh ├── launch │ └── example.launch ├── package.xml └── src │ ├── bpextract.cu │ ├── check_cuda_device.cu │ ├── depth_extract.cu │ ├── depth_fusion.cu │ ├── depth_upsample.cu │ ├── depthmap.cpp │ ├── depthmap_node.cpp │ ├── lsd_semidense.cu │ ├── main_ros.cpp │ ├── publisher.cpp │ ├── quadtree.cu │ ├── seed_init.cu │ └── seed_matrix.cu ├── pose_graph ├── CMakeLists.txt ├── cmake │ └── FindEigen.cmake ├── package.xml └── src │ ├── ThirdParty │ ├── DBoW │ │ ├── BowVector.cpp │ │ ├── BowVector.h │ │ ├── DBoW2.h │ │ ├── FBrief.cpp │ │ ├── FBrief.h │ │ ├── FClass.h │ │ ├── FeatureVector.cpp │ │ ├── FeatureVector.h │ │ ├── QueryResults.cpp │ │ ├── QueryResults.h │ │ ├── ScoringObject.cpp │ │ ├── ScoringObject.h │ │ ├── TemplatedDatabase.h │ │ └── TemplatedVocabulary.h │ ├── DUtils │ │ ├── DException.h │ │ ├── DUtils.h │ │ ├── Random.cpp │ │ ├── Random.h │ │ ├── Timestamp.cpp │ │ └── Timestamp.h │ ├── DVision │ │ ├── BRIEF.cpp │ │ ├── BRIEF.h │ │ └── DVision.h │ ├── VocabularyBinary.cpp │ └── VocabularyBinary.hpp │ ├── keyframe.cpp │ ├── keyframe.h │ ├── parameters.h │ ├── pose_graph.cpp │ ├── pose_graph.h │ ├── pose_graph_node.cpp │ └── utility │ ├── CameraPoseVisualization.cpp │ ├── CameraPoseVisualization.h │ ├── tic_toc.h │ ├── utility.cpp │ └── utility.h ├── support_files ├── brief_k10L6.bin ├── brief_pattern.yml ├── image │ ├── vins.png │ └── vins_black.png └── paper │ └── tro_technical_report.pdf └── vins_estimator ├── CMakeLists.txt ├── cmake └── FindEigen.cmake ├── launch ├── 3dm.launch ├── black_box.launch ├── cla.launch ├── euroc.launch ├── euroc_no_extrinsic_param.launch ├── leatu_test.launch ├── realsense_color.launch ├── realsense_fisheye.launch └── vins_rviz.launch ├── package.xml └── src ├── estimator.cpp ├── estimator.h ├── estimator_node.cpp ├── factor ├── imu_factor.h ├── integration_base.h ├── marginalization_factor.cpp ├── marginalization_factor.h ├── pose_local_parameterization.cpp ├── pose_local_parameterization.h ├── projection_factor.cpp ├── projection_factor.h ├── projection_td_factor.cpp └── projection_td_factor.h ├── feature_manager.cpp ├── feature_manager.h ├── initial ├── initial_aligment.cpp ├── initial_alignment.h ├── initial_ex_rotation.cpp ├── initial_ex_rotation.h ├── initial_sfm.cpp ├── initial_sfm.h ├── solve_5pts.cpp └── solve_5pts.h ├── parameters.cpp ├── parameters.h └── utility ├── CameraPoseVisualization.cpp ├── CameraPoseVisualization.h ├── tic_toc.h ├── utility.cpp ├── utility.h ├── visualization.cpp └── visualization.h /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | VINS + open_quadtree_mapping 2 | -------------------------------------------------------------------------------- /ar_demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/ar_demo/CMakeLists.txt -------------------------------------------------------------------------------- /ar_demo/cmake/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/ar_demo/cmake/FindEigen.cmake -------------------------------------------------------------------------------- /ar_demo/launch/3dm_bag.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/ar_demo/launch/3dm_bag.launch -------------------------------------------------------------------------------- /ar_demo/launch/ar_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/ar_demo/launch/ar_rviz.launch -------------------------------------------------------------------------------- /ar_demo/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/ar_demo/package.xml -------------------------------------------------------------------------------- /ar_demo/src/ar_demo_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/ar_demo/src/ar_demo_node.cpp -------------------------------------------------------------------------------- /benchmark_publisher/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/CMakeLists.txt -------------------------------------------------------------------------------- /benchmark_publisher/cmake/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/cmake/FindEigen.cmake -------------------------------------------------------------------------------- /benchmark_publisher/config/MH_01_easy/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/MH_01_easy/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/MH_02_easy/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/MH_02_easy/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/MH_03_medium/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/MH_03_medium/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/MH_04_difficult/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/MH_04_difficult/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/MH_05_difficult/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/MH_05_difficult/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/V1_01_easy/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/V1_01_easy/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/V1_02_medium/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/V1_02_medium/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/V1_03_difficult/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/V1_03_difficult/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/V2_01_easy/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/V2_01_easy/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/V2_02_medium/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/V2_02_medium/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/config/V2_03_difficult/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/config/V2_03_difficult/data.csv -------------------------------------------------------------------------------- /benchmark_publisher/launch/publish.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/launch/publish.launch -------------------------------------------------------------------------------- /benchmark_publisher/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/package.xml -------------------------------------------------------------------------------- /benchmark_publisher/src/benchmark_publisher_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/benchmark_publisher/src/benchmark_publisher_node.cpp -------------------------------------------------------------------------------- /camera_model/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/CMakeLists.txt -------------------------------------------------------------------------------- /camera_model/cmake/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/cmake/FindEigen.cmake -------------------------------------------------------------------------------- /camera_model/include/camodocal/calib/CameraCalibration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/calib/CameraCalibration.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/Camera.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/CameraFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/CameraFactory.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/CataCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/CataCamera.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/CostFunctionFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/CostFunctionFactory.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/EquidistantCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/EquidistantCamera.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/PinholeCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/PinholeCamera.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/camera_models/ScaramuzzaCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/camera_models/ScaramuzzaCamera.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/chessboard/Chessboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/chessboard/Chessboard.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/chessboard/ChessboardCorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/chessboard/ChessboardCorner.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/chessboard/ChessboardQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/chessboard/ChessboardQuad.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/chessboard/Spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/chessboard/Spline.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/gpl/EigenQuaternionParameterization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/gpl/EigenQuaternionParameterization.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/gpl/EigenUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/gpl/EigenUtils.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/gpl/gpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/gpl/gpl.h -------------------------------------------------------------------------------- /camera_model/include/camodocal/sparse_graph/Transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/include/camodocal/sparse_graph/Transform.h -------------------------------------------------------------------------------- /camera_model/instruction: -------------------------------------------------------------------------------- 1 | rosrun camera_model Calibration -w 8 -h 11 -s 70 -i ~/bag/PX/calib/ 2 | -------------------------------------------------------------------------------- /camera_model/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/package.xml -------------------------------------------------------------------------------- /camera_model/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/readme.md -------------------------------------------------------------------------------- /camera_model/src/calib/CameraCalibration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/calib/CameraCalibration.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/Camera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/Camera.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/CameraFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/CameraFactory.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/CataCamera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/CataCamera.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/CostFunctionFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/CostFunctionFactory.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/EquidistantCamera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/EquidistantCamera.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/PinholeCamera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/PinholeCamera.cc -------------------------------------------------------------------------------- /camera_model/src/camera_models/ScaramuzzaCamera.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/camera_models/ScaramuzzaCamera.cc -------------------------------------------------------------------------------- /camera_model/src/chessboard/Chessboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/chessboard/Chessboard.cc -------------------------------------------------------------------------------- /camera_model/src/gpl/EigenQuaternionParameterization.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/gpl/EigenQuaternionParameterization.cc -------------------------------------------------------------------------------- /camera_model/src/gpl/gpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/gpl/gpl.cc -------------------------------------------------------------------------------- /camera_model/src/intrinsic_calib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/intrinsic_calib.cc -------------------------------------------------------------------------------- /camera_model/src/sparse_graph/Transform.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/camera_model/src/sparse_graph/Transform.cc -------------------------------------------------------------------------------- /config/3dm/3dm_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/3dm/3dm_config.yaml -------------------------------------------------------------------------------- /config/AR_demo.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/AR_demo.rviz -------------------------------------------------------------------------------- /config/black_box/black_box_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/black_box/black_box_config.yaml -------------------------------------------------------------------------------- /config/cla/cla_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/cla/cla_config.yaml -------------------------------------------------------------------------------- /config/euroc/euroc_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/euroc/euroc_config.yaml -------------------------------------------------------------------------------- /config/euroc/euroc_config_no_extrinsic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/euroc/euroc_config_no_extrinsic.yaml -------------------------------------------------------------------------------- /config/extrinsic_parameter_example.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/extrinsic_parameter_example.pdf -------------------------------------------------------------------------------- /config/fisheye_mask.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/fisheye_mask.jpg -------------------------------------------------------------------------------- /config/leatu_fisheye.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/leatu_fisheye.rviz -------------------------------------------------------------------------------- /config/realsense/leatu_fisheye.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/realsense/leatu_fisheye.yaml -------------------------------------------------------------------------------- /config/realsense/realsense_color_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/realsense/realsense_color_config.yaml -------------------------------------------------------------------------------- /config/realsense/realsense_fisheye_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/realsense/realsense_fisheye_config.yaml -------------------------------------------------------------------------------- /config/vins_rviz_config.rviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/config/vins_rviz_config.rviz -------------------------------------------------------------------------------- /feature_tracker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/CMakeLists.txt -------------------------------------------------------------------------------- /feature_tracker/cmake/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/cmake/FindEigen.cmake -------------------------------------------------------------------------------- /feature_tracker/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/package.xml -------------------------------------------------------------------------------- /feature_tracker/src/feature_tracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/src/feature_tracker.cpp -------------------------------------------------------------------------------- /feature_tracker/src/feature_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/src/feature_tracker.h -------------------------------------------------------------------------------- /feature_tracker/src/feature_tracker_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/src/feature_tracker_node.cpp -------------------------------------------------------------------------------- /feature_tracker/src/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/src/parameters.cpp -------------------------------------------------------------------------------- /feature_tracker/src/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/src/parameters.h -------------------------------------------------------------------------------- /feature_tracker/src/tic_toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/feature_tracker/src/tic_toc.h -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeLists.txt -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeLists0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeLists0.txt -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeModules/FindCUDA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeModules/FindCUDA.cmake -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeModules/FindCUDA/make2cmake.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeModules/FindCUDA/make2cmake.cmake -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeModules/FindCUDA/parse_cubin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeModules/FindCUDA/parse_cubin.cmake -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeModules/FindCUDA/run_nvcc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeModules/FindCUDA/run_nvcc.cmake -------------------------------------------------------------------------------- /open_quadtree_mapping/CMakeModules/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/CMakeModules/FindEigen.cmake -------------------------------------------------------------------------------- /open_quadtree_mapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/README.md -------------------------------------------------------------------------------- /open_quadtree_mapping/fig/QuadtreeMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/fig/QuadtreeMapping.png -------------------------------------------------------------------------------- /open_quadtree_mapping/fig/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/fig/cover.jpg -------------------------------------------------------------------------------- /open_quadtree_mapping/include/cuda_toolkit/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/cuda_toolkit/exception.h -------------------------------------------------------------------------------- /open_quadtree_mapping/include/cuda_toolkit/helper_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/cuda_toolkit/helper_math.h -------------------------------------------------------------------------------- /open_quadtree_mapping/include/cuda_toolkit/helper_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/cuda_toolkit/helper_timer.h -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/DepthSeed.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/DepthSeed.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/camera_model/pinhole_camera.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/camera_model/pinhole_camera.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/check_cuda_device.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/check_cuda_device.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/cuda_exception.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/cuda_exception.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/depthmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/depthmap.h -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/depthmap_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/depthmap_node.h -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/device_image.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/device_image.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/frameelement.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/frameelement.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/helper_vector_types.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/helper_vector_types.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/match_parameter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/match_parameter.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/matrix.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/matrix.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/pixel_cost.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/pixel_cost.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/publisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/publisher.h -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/se3.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/se3.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/seed_matrix.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/seed_matrix.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/stereo_parameter.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/stereo_parameter.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/include/quadmap/texture_memory.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/include/quadmap/texture_memory.cuh -------------------------------------------------------------------------------- /open_quadtree_mapping/launch/example.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/launch/example.launch -------------------------------------------------------------------------------- /open_quadtree_mapping/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/package.xml -------------------------------------------------------------------------------- /open_quadtree_mapping/src/bpextract.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/bpextract.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/check_cuda_device.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/check_cuda_device.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/depth_extract.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/depth_extract.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/depth_fusion.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/depth_fusion.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/depth_upsample.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/depth_upsample.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/depthmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/depthmap.cpp -------------------------------------------------------------------------------- /open_quadtree_mapping/src/depthmap_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/depthmap_node.cpp -------------------------------------------------------------------------------- /open_quadtree_mapping/src/lsd_semidense.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/lsd_semidense.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/main_ros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/main_ros.cpp -------------------------------------------------------------------------------- /open_quadtree_mapping/src/publisher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/publisher.cpp -------------------------------------------------------------------------------- /open_quadtree_mapping/src/quadtree.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/quadtree.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/seed_init.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/seed_init.cu -------------------------------------------------------------------------------- /open_quadtree_mapping/src/seed_matrix.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/open_quadtree_mapping/src/seed_matrix.cu -------------------------------------------------------------------------------- /pose_graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/CMakeLists.txt -------------------------------------------------------------------------------- /pose_graph/cmake/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/cmake/FindEigen.cmake -------------------------------------------------------------------------------- /pose_graph/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/package.xml -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/BowVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/BowVector.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/BowVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/BowVector.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/DBoW2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/DBoW2.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/FBrief.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/FBrief.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/FBrief.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/FBrief.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/FClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/FClass.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/FeatureVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/FeatureVector.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/FeatureVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/FeatureVector.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/QueryResults.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/QueryResults.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/QueryResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/QueryResults.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/ScoringObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/ScoringObject.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/ScoringObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/ScoringObject.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/TemplatedDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/TemplatedDatabase.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DBoW/TemplatedVocabulary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DBoW/TemplatedVocabulary.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DUtils/DException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DUtils/DException.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DUtils/DUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DUtils/DUtils.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DUtils/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DUtils/Random.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DUtils/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DUtils/Random.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DUtils/Timestamp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DUtils/Timestamp.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DUtils/Timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DUtils/Timestamp.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DVision/BRIEF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DVision/BRIEF.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DVision/BRIEF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DVision/BRIEF.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/DVision/DVision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/DVision/DVision.h -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/VocabularyBinary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/VocabularyBinary.cpp -------------------------------------------------------------------------------- /pose_graph/src/ThirdParty/VocabularyBinary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/ThirdParty/VocabularyBinary.hpp -------------------------------------------------------------------------------- /pose_graph/src/keyframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/keyframe.cpp -------------------------------------------------------------------------------- /pose_graph/src/keyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/keyframe.h -------------------------------------------------------------------------------- /pose_graph/src/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/parameters.h -------------------------------------------------------------------------------- /pose_graph/src/pose_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/pose_graph.cpp -------------------------------------------------------------------------------- /pose_graph/src/pose_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/pose_graph.h -------------------------------------------------------------------------------- /pose_graph/src/pose_graph_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/pose_graph_node.cpp -------------------------------------------------------------------------------- /pose_graph/src/utility/CameraPoseVisualization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/utility/CameraPoseVisualization.cpp -------------------------------------------------------------------------------- /pose_graph/src/utility/CameraPoseVisualization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/utility/CameraPoseVisualization.h -------------------------------------------------------------------------------- /pose_graph/src/utility/tic_toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/utility/tic_toc.h -------------------------------------------------------------------------------- /pose_graph/src/utility/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/utility/utility.cpp -------------------------------------------------------------------------------- /pose_graph/src/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/pose_graph/src/utility/utility.h -------------------------------------------------------------------------------- /support_files/brief_k10L6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/support_files/brief_k10L6.bin -------------------------------------------------------------------------------- /support_files/brief_pattern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/support_files/brief_pattern.yml -------------------------------------------------------------------------------- /support_files/image/vins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/support_files/image/vins.png -------------------------------------------------------------------------------- /support_files/image/vins_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/support_files/image/vins_black.png -------------------------------------------------------------------------------- /support_files/paper/tro_technical_report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/support_files/paper/tro_technical_report.pdf -------------------------------------------------------------------------------- /vins_estimator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/CMakeLists.txt -------------------------------------------------------------------------------- /vins_estimator/cmake/FindEigen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/cmake/FindEigen.cmake -------------------------------------------------------------------------------- /vins_estimator/launch/3dm.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/3dm.launch -------------------------------------------------------------------------------- /vins_estimator/launch/black_box.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/black_box.launch -------------------------------------------------------------------------------- /vins_estimator/launch/cla.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/cla.launch -------------------------------------------------------------------------------- /vins_estimator/launch/euroc.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/euroc.launch -------------------------------------------------------------------------------- /vins_estimator/launch/euroc_no_extrinsic_param.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/euroc_no_extrinsic_param.launch -------------------------------------------------------------------------------- /vins_estimator/launch/leatu_test.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/leatu_test.launch -------------------------------------------------------------------------------- /vins_estimator/launch/realsense_color.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/realsense_color.launch -------------------------------------------------------------------------------- /vins_estimator/launch/realsense_fisheye.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/realsense_fisheye.launch -------------------------------------------------------------------------------- /vins_estimator/launch/vins_rviz.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/launch/vins_rviz.launch -------------------------------------------------------------------------------- /vins_estimator/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/package.xml -------------------------------------------------------------------------------- /vins_estimator/src/estimator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/estimator.cpp -------------------------------------------------------------------------------- /vins_estimator/src/estimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/estimator.h -------------------------------------------------------------------------------- /vins_estimator/src/estimator_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/estimator_node.cpp -------------------------------------------------------------------------------- /vins_estimator/src/factor/imu_factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/imu_factor.h -------------------------------------------------------------------------------- /vins_estimator/src/factor/integration_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/integration_base.h -------------------------------------------------------------------------------- /vins_estimator/src/factor/marginalization_factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/marginalization_factor.cpp -------------------------------------------------------------------------------- /vins_estimator/src/factor/marginalization_factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/marginalization_factor.h -------------------------------------------------------------------------------- /vins_estimator/src/factor/pose_local_parameterization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/pose_local_parameterization.cpp -------------------------------------------------------------------------------- /vins_estimator/src/factor/pose_local_parameterization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/pose_local_parameterization.h -------------------------------------------------------------------------------- /vins_estimator/src/factor/projection_factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/projection_factor.cpp -------------------------------------------------------------------------------- /vins_estimator/src/factor/projection_factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/projection_factor.h -------------------------------------------------------------------------------- /vins_estimator/src/factor/projection_td_factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/projection_td_factor.cpp -------------------------------------------------------------------------------- /vins_estimator/src/factor/projection_td_factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/factor/projection_td_factor.h -------------------------------------------------------------------------------- /vins_estimator/src/feature_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/feature_manager.cpp -------------------------------------------------------------------------------- /vins_estimator/src/feature_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/feature_manager.h -------------------------------------------------------------------------------- /vins_estimator/src/initial/initial_aligment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/initial_aligment.cpp -------------------------------------------------------------------------------- /vins_estimator/src/initial/initial_alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/initial_alignment.h -------------------------------------------------------------------------------- /vins_estimator/src/initial/initial_ex_rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/initial_ex_rotation.cpp -------------------------------------------------------------------------------- /vins_estimator/src/initial/initial_ex_rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/initial_ex_rotation.h -------------------------------------------------------------------------------- /vins_estimator/src/initial/initial_sfm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/initial_sfm.cpp -------------------------------------------------------------------------------- /vins_estimator/src/initial/initial_sfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/initial_sfm.h -------------------------------------------------------------------------------- /vins_estimator/src/initial/solve_5pts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/solve_5pts.cpp -------------------------------------------------------------------------------- /vins_estimator/src/initial/solve_5pts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/initial/solve_5pts.h -------------------------------------------------------------------------------- /vins_estimator/src/parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/parameters.cpp -------------------------------------------------------------------------------- /vins_estimator/src/parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/parameters.h -------------------------------------------------------------------------------- /vins_estimator/src/utility/CameraPoseVisualization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/CameraPoseVisualization.cpp -------------------------------------------------------------------------------- /vins_estimator/src/utility/CameraPoseVisualization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/CameraPoseVisualization.h -------------------------------------------------------------------------------- /vins_estimator/src/utility/tic_toc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/tic_toc.h -------------------------------------------------------------------------------- /vins_estimator/src/utility/utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/utility.cpp -------------------------------------------------------------------------------- /vins_estimator/src/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/utility.h -------------------------------------------------------------------------------- /vins_estimator/src/utility/visualization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/visualization.cpp -------------------------------------------------------------------------------- /vins_estimator/src/utility/visualization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wyinggui/vins-open_quadtree_mapping/HEAD/vins_estimator/src/utility/visualization.h --------------------------------------------------------------------------------