Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROS Free Workflow #301

Closed
BrightWHU opened this issue Jan 12, 2023 · 1 comment · Fixed by #318
Closed

ROS Free Workflow #301

BrightWHU opened this issue Jan 12, 2023 · 1 comment · Fixed by #318
Labels
compile User has trouble compiling on their own platform.

Comments

@BrightWHU
Copy link

Where is the demo of ros free workflow?

@goldbattle goldbattle added the compile User has trouble compiling on their own platform. label Jan 12, 2023
@goldbattle
Copy link
Member

goldbattle commented Jan 12, 2023

Example to build core library:

git clone https://github.com/rpng/open_vins
cd open_vins/ov_core/
mkdir build
cd build
cmake ..
make -j4
./test_webcam

Example to build of the EKF:

git clone https://github.com/rpng/open_vins
cd open_vins/ov_msckf/
mkdir build
cd build
cmake ..
make -j4
./run_simulation <path_to_config>

Can also take a look at the docker file:

- name: Configure and Build
run: |
sudo apt-get update
sudo apt-get install -y libeigen3-dev libopencv-dev libboost-all-dev
mkdir build
cd build
cmake ../ov_msckf/
make

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
compile User has trouble compiling on their own platform.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants