orb_slam3_details/build.sh

42 lines
619 B
Bash
Raw Normal View History

2020-12-01 11:58:17 +08:00
echo "Configuring and building Thirdparty/DBoW2 ..."
cd Thirdparty/DBoW2
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
cd ../../g2o
echo "Configuring and building Thirdparty/g2o ..."
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
2022-04-06 22:51:13 +08:00
cd ../../Sophus
echo "Configuring and building Thirdparty/Sophus ..."
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j
2020-12-01 11:58:17 +08:00
cd ../../../
echo "Uncompress vocabulary ..."
cd Vocabulary
tar -xf ORBvoc.txt.tar.gz
cd ..
echo "Configuring and building ORB_SLAM3 ..."
mkdir build
cd build
2021-08-09 19:34:51 +08:00
cmake .. -DCMAKE_BUILD_TYPE=Release
2022-04-06 22:51:13 +08:00
make -j4