vins_mono_cg
Modified version of VINS-Mono (commit 9e657be)
File Explorer
Download Latest Version (.zip)- FindEigen.cmake
- 3dm_bag.launch
- ar_rviz.launch
- realsense_ar.launch
- ar_demo_node.cpp
- CMakeLists.txt
- package.xml
- FindEigen.cmake
- publish.launch
- benchmark_publisher_node.cpp
- CMakeLists.txt
- package.xml
- FindEigen.cmake
- CameraCalibration.h
- Camera.h
- CameraFactory.h
- CataCamera.h
- CostFunctionFactory.h
- EquidistantCamera.h
- PinholeCamera.h
- ScaramuzzaCamera.h
- Chessboard.h
- ChessboardCorner.h
- ChessboardQuad.h
- Spline.h
- EigenQuaternionParameterization.h
- EigenUtils.h
- gpl.h
- Transform.h
- CameraCalibration.cc
- Camera.cc
- CameraFactory.cc
- CataCamera.cc
- CostFunctionFactory.cc
- EquidistantCamera.cc
- PinholeCamera.cc
- ScaramuzzaCamera.cc
- Chessboard.cc
- EigenQuaternionParameterization.cc
- gpl.cc
- Transform.cc
- intrinsic_calib.cc
- CMakeLists.txt
- package.xml
- readme.md
- 3dm_config.yaml
- advio_iphone02.yaml
- advio_iphone03.yaml
- black_box_config.yaml
- cla_config.yaml
- euroc_config.yaml
- euroc_config_no_extrinsic.yaml
- mynteye_s1030_mono_config.yaml
- mynteye_s2110_mono_config.yaml
- oppo_R11s.yaml
- realsense_color_config.yaml
- realsense_fisheye_config.yaml
- sensetime_mi8.yaml
- tum_config.yaml
- AR_demo.rviz
- extrinsic_parameter_example.pdf
- fisheye_mask.jpg
- fisheye_mask_752x480.jpg
- vins_rviz_config.rviz
- Dockerfile
- Makefile
- run.sh
- FindEigen.cmake
- feature_tracker.cpp
- feature_tracker.h
- feature_tracker_node.cpp
- parameters.cpp
- parameters.h
- tic_toc.h
- CMakeLists.txt
- package.xml
- vins_euroc_ape.jpg
- vins_mono_mynteye_s1030_mono.jpg
- vinsmono_rosgraph.svg
- FindEigen.cmake
- 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
- DException.h
- DUtils.h
- Random.cpp
- Random.h
- Timestamp.cpp
- Timestamp.h
- BRIEF.cpp
- BRIEF.h
- DVision.h
- VocabularyBinary.cpp
- VocabularyBinary.hpp
- CameraPoseVisualization.cpp
- CameraPoseVisualization.h
- tic_toc.h
- utility.cpp
- utility.h
- keyframe.cpp
- keyframe.h
- parameters.h
- pose_graph.cpp
- pose_graph.h
- pose_graph_node.cpp
- CMakeLists.txt
- package.xml
- brief_pattern.yml
- FindEigen.cmake
- 3dm.launch
- advio.launch
- black_box.launch
- cla.launch
- euroc.launch
- euroc_no_extrinsic_param.launch
- mynteye_mono.launch
- oppo.launch
- realsense_color.launch
- realsense_fisheye.launch
- sensetime.launch
- tum.launch
- 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
- 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
- CameraPoseVisualization.cpp
- CameraPoseVisualization.h
- tic_toc.h
- utility.cpp
- utility.h
- visualization.cpp
- visualization.h
- estimator.cpp
- estimator.h
- estimator_node.cpp
- feature_manager.cpp
- feature_manager.h
- parameters.cpp
- parameters.h
- CMakeLists.txt
- package.xml
- .clang-format
- .gitignore
- batch_format.sh
- CLAUDE.md
- LICENCE
- README.md
# Installation Guide
git clone https://github.com/cggos/vins_mono_cg
Downloads the entire project code from GitHub to your computer.
cd vins_mono_cg
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
cd docker
Moves into the project folder you just downloaded.
Pulled directly from this repo's README.
3. CMake
Mediumcd ar_demo
This project's files live in a subfolder, so move into it first.
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
4. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make build
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
