forked from UZ-SLAMLab/ORB_SLAM3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean.sh
executable file
·46 lines (41 loc) · 1.54 KB
/
clean.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
echo "Removing all ORB_SLAM3 CXX executables"
rm -rf build lib
rm Examples/RGB-D/rgbd_tum \
Examples/RGB-D/rgbd_realsense_D435i \
Examples/RGB-D-Inertial/rgbd_inertial_realsense_D435i \
Examples/Monocular/mono_realsense_D435i \
Examples/Monocular/mono_euroc \
Examples/Monocular/mono_kitti \
Examples/Monocular/mono_tum \
Examples/Monocular/mono_tum_vi \
Examples/Monocular/mono_realsense_t265 \
Examples/Stereo/stereo_euroc \
Examples/Stereo/stereo_kitti \
Examples/Stereo/stereo_tum_vi \
Examples/Stereo/stereo_realsense_t265 \
Examples/Stereo/stereo_realsense_D435i \
Examples/Monocular-Inertial/mono_inertial_euroc \
Examples/Monocular-Inertial/mono_inertial_tum_vi \
Examples/Monocular-Inertial/mono_inertial_realsense_t265 \
Examples/Monocular-Inertial/mono_inertial_realsense_D435i \
Examples/Monocular-Inertial/mono_inertial_realsense_D435i_2 \
Examples/Calibration/recorder_realsense_D435i
echo "Cleaning ROS ..."
rm -rf Examples/ROS/ORB_SLAM3/build
rm Examples/ROS/ORB_SLAM3/Mono \
Examples/ROS/ORB_SLAM3/Mono_Inertial \
Examples/ROS/ORB_SLAM3/RGBD \
Examples/ROS/ORB_SLAM3/Stereo \
Examples/ROS/ORB_SLAM3/Stereo_Inertial
echo "Cleaning Thirdparty ..."
rm Thirdparty/g2o/config.h
rm -rf Thirdparty/DBoW2/build \
Thirdparty/DBoW2/lib \
Thirdparty/g2o/build \
Thirdparty/g2o/lib \
Thirdparty/Pangolin/build \
Examples/Tests/viewer_dataset \
Examples/Tests/sophus_test
echo "Deleting extracted vocabulary ..."
rm Vocabulary/ORBvoc.txt
echo "Done !!"