├── LICENSE ├── README.md ├── SetParameters.m ├── SetPath.m ├── TestStereo.m ├── cost ├── MICost.m ├── MatchCost.m ├── MatchCostAD.m ├── MatchCostBT.m ├── MatchCostHMI.m └── MatchCostNCC.m ├── cost_aggr ├── CostAggrBilateral.m ├── CostAggrFW.m ├── CostAggrScanline.m ├── CostAggrSegWin.m ├── CostAggrShiftWin.m └── CostAggregation.m ├── data ├── result.jpg └── tsukuba │ ├── scene1.row3.col1.ppm │ ├── scene1.row3.col3.ppm │ ├── scene1.row3.col4.ppm │ ├── scene1.row3.col5.ppm │ ├── scene1.truedisp.pgm │ └── truedisp.row3.col3.pgm ├── disp_comput ├── DisparityOpt.m ├── DisparityOptGC.m ├── DisparityOptSGM.m ├── DisparityOptSO.m └── GetDisparityWTA.m ├── graph_cut └── readme.md └── img_proc ├── GetLabelEdge.m ├── ImgFiltering.m ├── ImgPad.m ├── mexSLIC.c └── mexSLIC.mexw64 /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/README.md -------------------------------------------------------------------------------- /SetParameters.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/SetParameters.m -------------------------------------------------------------------------------- /SetPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/SetPath.m -------------------------------------------------------------------------------- /TestStereo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/TestStereo.m -------------------------------------------------------------------------------- /cost/MICost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost/MICost.m -------------------------------------------------------------------------------- /cost/MatchCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost/MatchCost.m -------------------------------------------------------------------------------- /cost/MatchCostAD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost/MatchCostAD.m -------------------------------------------------------------------------------- /cost/MatchCostBT.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost/MatchCostBT.m -------------------------------------------------------------------------------- /cost/MatchCostHMI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost/MatchCostHMI.m -------------------------------------------------------------------------------- /cost/MatchCostNCC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost/MatchCostNCC.m -------------------------------------------------------------------------------- /cost_aggr/CostAggrBilateral.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost_aggr/CostAggrBilateral.m -------------------------------------------------------------------------------- /cost_aggr/CostAggrFW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost_aggr/CostAggrFW.m -------------------------------------------------------------------------------- /cost_aggr/CostAggrScanline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost_aggr/CostAggrScanline.m -------------------------------------------------------------------------------- /cost_aggr/CostAggrSegWin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost_aggr/CostAggrSegWin.m -------------------------------------------------------------------------------- /cost_aggr/CostAggrShiftWin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost_aggr/CostAggrShiftWin.m -------------------------------------------------------------------------------- /cost_aggr/CostAggregation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/cost_aggr/CostAggregation.m -------------------------------------------------------------------------------- /data/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/result.jpg -------------------------------------------------------------------------------- /data/tsukuba/scene1.row3.col1.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/tsukuba/scene1.row3.col1.ppm -------------------------------------------------------------------------------- /data/tsukuba/scene1.row3.col3.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/tsukuba/scene1.row3.col3.ppm -------------------------------------------------------------------------------- /data/tsukuba/scene1.row3.col4.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/tsukuba/scene1.row3.col4.ppm -------------------------------------------------------------------------------- /data/tsukuba/scene1.row3.col5.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/tsukuba/scene1.row3.col5.ppm -------------------------------------------------------------------------------- /data/tsukuba/scene1.truedisp.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/tsukuba/scene1.truedisp.pgm -------------------------------------------------------------------------------- /data/tsukuba/truedisp.row3.col3.pgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/data/tsukuba/truedisp.row3.col3.pgm -------------------------------------------------------------------------------- /disp_comput/DisparityOpt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/disp_comput/DisparityOpt.m -------------------------------------------------------------------------------- /disp_comput/DisparityOptGC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/disp_comput/DisparityOptGC.m -------------------------------------------------------------------------------- /disp_comput/DisparityOptSGM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/disp_comput/DisparityOptSGM.m -------------------------------------------------------------------------------- /disp_comput/DisparityOptSO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/disp_comput/DisparityOptSO.m -------------------------------------------------------------------------------- /disp_comput/GetDisparityWTA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/disp_comput/GetDisparityWTA.m -------------------------------------------------------------------------------- /graph_cut/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/graph_cut/readme.md -------------------------------------------------------------------------------- /img_proc/GetLabelEdge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/img_proc/GetLabelEdge.m -------------------------------------------------------------------------------- /img_proc/ImgFiltering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/img_proc/ImgFiltering.m -------------------------------------------------------------------------------- /img_proc/ImgPad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/img_proc/ImgPad.m -------------------------------------------------------------------------------- /img_proc/mexSLIC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/img_proc/mexSLIC.c -------------------------------------------------------------------------------- /img_proc/mexSLIC.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galad-loth/StereoMatching/HEAD/img_proc/mexSLIC.mexw64 --------------------------------------------------------------------------------