├── .gitignore ├── .travis.sh ├── .travis.yml ├── CMakeLists.txt ├── COPYING ├── README.md ├── demo-stereo-odometry ├── CMakeLists.txt └── demo-main.cpp └── libstereo-odometry ├── CMakeLists.txt ├── Doxyfile ├── include └── libstereo-odometry.h ├── mainpage_dox.h ├── src ├── common.cpp ├── compute_SAD8.cpp ├── gui_thread.cpp ├── internal_libstereo-odometry.h ├── process_new_image_pair.cpp ├── stage1_rectify.cpp ├── stage2_detect.cpp ├── stage3_match_left_right.cpp ├── stage4_match_consecutive.cpp ├── stage5_optimization.cpp └── tracking_SAD.cpp └── tests ├── 0L.png ├── 0R.png ├── CMakeLists.txt ├── computeSAD8_unittest.cpp ├── gtest ├── gtest-all.cc └── gtest.h ├── test_main.cpp └── trackSAD_unittest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/.travis.sh -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/README.md -------------------------------------------------------------------------------- /demo-stereo-odometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/demo-stereo-odometry/CMakeLists.txt -------------------------------------------------------------------------------- /demo-stereo-odometry/demo-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/demo-stereo-odometry/demo-main.cpp -------------------------------------------------------------------------------- /libstereo-odometry/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/CMakeLists.txt -------------------------------------------------------------------------------- /libstereo-odometry/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/Doxyfile -------------------------------------------------------------------------------- /libstereo-odometry/include/libstereo-odometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/include/libstereo-odometry.h -------------------------------------------------------------------------------- /libstereo-odometry/mainpage_dox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/mainpage_dox.h -------------------------------------------------------------------------------- /libstereo-odometry/src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/common.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/compute_SAD8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/compute_SAD8.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/gui_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/gui_thread.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/internal_libstereo-odometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/internal_libstereo-odometry.h -------------------------------------------------------------------------------- /libstereo-odometry/src/process_new_image_pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/process_new_image_pair.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/stage1_rectify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/stage1_rectify.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/stage2_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/stage2_detect.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/stage3_match_left_right.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/stage3_match_left_right.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/stage4_match_consecutive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/stage4_match_consecutive.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/stage5_optimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/stage5_optimization.cpp -------------------------------------------------------------------------------- /libstereo-odometry/src/tracking_SAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/src/tracking_SAD.cpp -------------------------------------------------------------------------------- /libstereo-odometry/tests/0L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/0L.png -------------------------------------------------------------------------------- /libstereo-odometry/tests/0R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/0R.png -------------------------------------------------------------------------------- /libstereo-odometry/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libstereo-odometry/tests/computeSAD8_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/computeSAD8_unittest.cpp -------------------------------------------------------------------------------- /libstereo-odometry/tests/gtest/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/gtest/gtest-all.cc -------------------------------------------------------------------------------- /libstereo-odometry/tests/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/gtest/gtest.h -------------------------------------------------------------------------------- /libstereo-odometry/tests/test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/test_main.cpp -------------------------------------------------------------------------------- /libstereo-odometry/tests/trackSAD_unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/famoreno/stereo-vo/HEAD/libstereo-odometry/tests/trackSAD_unittest.cpp --------------------------------------------------------------------------------