-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
S-PTAM code corresponding to RAS 2017 S-PTAM publication
- Loading branch information
Showing
154 changed files
with
15,253 additions
and
5,225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
before_script: | ||
- /prepare.sh | ||
- apt-get install -y python-matplotlib | ||
|
||
build: | ||
stage: build | ||
tags: | ||
- ros-kinetic | ||
script: | ||
# Build ROS in four configurations | ||
- /build.sh --cmake-args -DSHOW_TRACKED_FRAMES=ON -DSHOW_PROFILING=ON | ||
- /build.sh --cmake-args -DSHOW_TRACKED_FRAMES=ON -DSHOW_PROFILING=OFF | ||
- /build.sh --cmake-args -DSHOW_TRACKED_FRAMES=OFF -DSHOW_PROFILING=ON | ||
- /build.sh --cmake-args -DSHOW_TRACKED_FRAMES=OFF -DSHOW_PROFILING=OFF | ||
# Build standalone in release config for running tests | ||
- cd $CI_PROJECT_DIR/src/standAlone && mkdir -p build && cd build && | ||
cmake -DSHOW_TRACKED_FRAMES=OFF -DSHOW_PROFILING=ON -DCMAKE_BUILD_TYPE=Release .. && make | ||
# Run KITTI 04 in standalone mode | ||
- cd $CI_PROJECT_DIR/src/standAlone && | ||
./build/sptam-stereo --timestamps /datasets/KITTI/04/times.txt | ||
../../configurationFiles/kitti.yaml | ||
../../configurationFiles/kitti_cam_04_to_12.yaml | ||
/datasets/KITTI/04/image_0 /datasets/KITTI/04/image_1 | ||
dir | ||
# Run plot-errors to compute errors and make plots | ||
- $CI_PROJECT_DIR/plotters/plot-errors.py --savetofiles --kitti /datasets/KITTI/poses/04.txt $CI_PROJECT_DIR/src/standAlone/*.log > $CI_PROJECT_DIR/src/standAlone/errors.log | ||
artifacts: | ||
paths: | ||
- $CI_PROJECT_DIR/src/standAlone/*.log | ||
- $CI_PROJECT_DIR/src/standAlone/*.png | ||
expire_in: '1 week' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "bow_voc"] | ||
path = bow_voc | ||
url = https://github.com/lrse/bow_vocabularies.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.