├── .gitignore ├── CMakeLists.txt ├── LICENCE ├── README.md ├── include ├── AbstractStereoAlgorithm.h ├── DCBGridStereo.h ├── DisparityPropagationStereo.h ├── FeatureLinkStereo.h ├── FiveRegionStereo.h ├── GuidedImageStereo.h ├── IDRStereo.h ├── SADBoxMedian.h ├── rectification.h ├── st_util.h └── wta.h └── src ├── DCBGridStereo.cpp ├── DisparityPropagationStereo.cpp ├── FeatureLinkStereo.cpp ├── FiveRegionStereo.cpp ├── GuidedImageStereo.cpp ├── IDRStereo.cpp ├── SADBoxMedian.cpp ├── main.cpp ├── rectification.cpp ├── st_util.cpp └── wta.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/README.md -------------------------------------------------------------------------------- /include/AbstractStereoAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/AbstractStereoAlgorithm.h -------------------------------------------------------------------------------- /include/DCBGridStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/DCBGridStereo.h -------------------------------------------------------------------------------- /include/DisparityPropagationStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/DisparityPropagationStereo.h -------------------------------------------------------------------------------- /include/FeatureLinkStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/FeatureLinkStereo.h -------------------------------------------------------------------------------- /include/FiveRegionStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/FiveRegionStereo.h -------------------------------------------------------------------------------- /include/GuidedImageStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/GuidedImageStereo.h -------------------------------------------------------------------------------- /include/IDRStereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/IDRStereo.h -------------------------------------------------------------------------------- /include/SADBoxMedian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/SADBoxMedian.h -------------------------------------------------------------------------------- /include/rectification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/rectification.h -------------------------------------------------------------------------------- /include/st_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/st_util.h -------------------------------------------------------------------------------- /include/wta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/include/wta.h -------------------------------------------------------------------------------- /src/DCBGridStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/DCBGridStereo.cpp -------------------------------------------------------------------------------- /src/DisparityPropagationStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/DisparityPropagationStereo.cpp -------------------------------------------------------------------------------- /src/FeatureLinkStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/FeatureLinkStereo.cpp -------------------------------------------------------------------------------- /src/FiveRegionStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/FiveRegionStereo.cpp -------------------------------------------------------------------------------- /src/GuidedImageStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/GuidedImageStereo.cpp -------------------------------------------------------------------------------- /src/IDRStereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/IDRStereo.cpp -------------------------------------------------------------------------------- /src/SADBoxMedian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/SADBoxMedian.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/rectification.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/rectification.cpp -------------------------------------------------------------------------------- /src/st_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/st_util.cpp -------------------------------------------------------------------------------- /src/wta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dario-wat/stereo-algo/HEAD/src/wta.cpp --------------------------------------------------------------------------------