├── .gitmodules ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── doc ├── rerun_sequence_00_kitti.gif └── result_sequence_00_kitti.gif └── vop2el_src ├── CMakeLists.txt ├── test ├── RerunVisualizer.cpp ├── RerunVisualizer.h ├── StereoCameraParameters.txt ├── Utils.cpp ├── Utils.h ├── Volp2elParameters.ini ├── ini.h ├── main.cpp └── vop2el.rbl └── vop2el_lib ├── include ├── Common.h ├── PatchCorrector.h ├── StereoImagesHandler.h ├── Vop2elAlgorithm.h ├── Vop2elCostStructs.h └── Vop2elMatcher.h └── src ├── Common.cpp ├── PatchCorrector.cpp ├── StereoImagesHandler.cpp ├── Vop2elAlgorithm.cpp └── Vop2elMatcher.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/README.md -------------------------------------------------------------------------------- /doc/rerun_sequence_00_kitti.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/doc/rerun_sequence_00_kitti.gif -------------------------------------------------------------------------------- /doc/result_sequence_00_kitti.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/doc/result_sequence_00_kitti.gif -------------------------------------------------------------------------------- /vop2el_src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/CMakeLists.txt -------------------------------------------------------------------------------- /vop2el_src/test/RerunVisualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/RerunVisualizer.cpp -------------------------------------------------------------------------------- /vop2el_src/test/RerunVisualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/RerunVisualizer.h -------------------------------------------------------------------------------- /vop2el_src/test/StereoCameraParameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/StereoCameraParameters.txt -------------------------------------------------------------------------------- /vop2el_src/test/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/Utils.cpp -------------------------------------------------------------------------------- /vop2el_src/test/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/Utils.h -------------------------------------------------------------------------------- /vop2el_src/test/Volp2elParameters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/Volp2elParameters.ini -------------------------------------------------------------------------------- /vop2el_src/test/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/ini.h -------------------------------------------------------------------------------- /vop2el_src/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/main.cpp -------------------------------------------------------------------------------- /vop2el_src/test/vop2el.rbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/test/vop2el.rbl -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/include/Common.h -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/include/PatchCorrector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/include/PatchCorrector.h -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/include/StereoImagesHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/include/StereoImagesHandler.h -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/include/Vop2elAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/include/Vop2elAlgorithm.h -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/include/Vop2elCostStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/include/Vop2elCostStructs.h -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/include/Vop2elMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/include/Vop2elMatcher.h -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/src/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/src/Common.cpp -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/src/PatchCorrector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/src/PatchCorrector.cpp -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/src/StereoImagesHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/src/StereoImagesHandler.cpp -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/src/Vop2elAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/src/Vop2elAlgorithm.cpp -------------------------------------------------------------------------------- /vop2el_src/vop2el_lib/src/Vop2elMatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vop2elToolkit/Vop2el/HEAD/vop2el_src/vop2el_lib/src/Vop2elMatcher.cpp --------------------------------------------------------------------------------