├── .gitattributes ├── .gitignore ├── README.md ├── StereoCorrespondenceBMTuner ├── StereoCorrespondenceBMTuner.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui ├── TROUBLESHOOTING.md └── example.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/README.md -------------------------------------------------------------------------------- /StereoCorrespondenceBMTuner/StereoCorrespondenceBMTuner.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/StereoCorrespondenceBMTuner/StereoCorrespondenceBMTuner.pro -------------------------------------------------------------------------------- /StereoCorrespondenceBMTuner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/StereoCorrespondenceBMTuner/main.cpp -------------------------------------------------------------------------------- /StereoCorrespondenceBMTuner/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/StereoCorrespondenceBMTuner/mainwindow.cpp -------------------------------------------------------------------------------- /StereoCorrespondenceBMTuner/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/StereoCorrespondenceBMTuner/mainwindow.h -------------------------------------------------------------------------------- /StereoCorrespondenceBMTuner/mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/StereoCorrespondenceBMTuner/mainwindow.ui -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmarquet/opencv-disparity-map-tuner/HEAD/example.png --------------------------------------------------------------------------------