├── CMakeLists.txt ├── PatchMatch中文版报告.pdf ├── README.md ├── docs ├── .DS_Store ├── Aloe_disp1_11px.png ├── Aloe_disp1_31px.png ├── Aloe_disp1_patch_match.png ├── Aloe_disp1_red_black.png ├── Aloe_disp1_row_col.png ├── Aloe_disp5_11px.png ├── Aloe_disp5_31px.png ├── Aloe_disp5_patch_match.png ├── Aloe_disp5_red_black.png ├── Aloe_disp5_row_col.png ├── experiment1_left.png ├── experiment1_right.png ├── experiment2_fig1.png ├── experiment2_fig2.png ├── experiment2_fig3.png ├── experiment2_fig4.png ├── experiment2_fig5.png └── experiment2_fig6.png ├── draw_experiment1.py ├── draw_experiment2.py ├── draw_experiment3.py ├── include ├── DisparityPlane.h ├── Matrix2D.h ├── PatchMatch.h ├── PatchMatchBase.h ├── PatchMatchRedBlack.h └── PatchMatchRowColSweep.h └── src ├── CMakeLists.txt ├── DisparityPlane.cpp ├── Matrix2D.cpp ├── PatchMatch.cpp ├── PatchMatchBase.cpp ├── PatchMatchRedBlack.cpp ├── PatchMatchRowColSweep.cpp ├── pm.cpp ├── pm_red_black.cpp └── pm_rows_cols_sweep.cpp /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /PatchMatch中文版报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/PatchMatch中文版报告.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/README.md -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/Aloe_disp1_11px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp1_11px.png -------------------------------------------------------------------------------- /docs/Aloe_disp1_31px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp1_31px.png -------------------------------------------------------------------------------- /docs/Aloe_disp1_patch_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp1_patch_match.png -------------------------------------------------------------------------------- /docs/Aloe_disp1_red_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp1_red_black.png -------------------------------------------------------------------------------- /docs/Aloe_disp1_row_col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp1_row_col.png -------------------------------------------------------------------------------- /docs/Aloe_disp5_11px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp5_11px.png -------------------------------------------------------------------------------- /docs/Aloe_disp5_31px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp5_31px.png -------------------------------------------------------------------------------- /docs/Aloe_disp5_patch_match.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp5_patch_match.png -------------------------------------------------------------------------------- /docs/Aloe_disp5_red_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp5_red_black.png -------------------------------------------------------------------------------- /docs/Aloe_disp5_row_col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/Aloe_disp5_row_col.png -------------------------------------------------------------------------------- /docs/experiment1_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment1_left.png -------------------------------------------------------------------------------- /docs/experiment1_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment1_right.png -------------------------------------------------------------------------------- /docs/experiment2_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment2_fig1.png -------------------------------------------------------------------------------- /docs/experiment2_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment2_fig2.png -------------------------------------------------------------------------------- /docs/experiment2_fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment2_fig3.png -------------------------------------------------------------------------------- /docs/experiment2_fig4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment2_fig4.png -------------------------------------------------------------------------------- /docs/experiment2_fig5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment2_fig5.png -------------------------------------------------------------------------------- /docs/experiment2_fig6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/docs/experiment2_fig6.png -------------------------------------------------------------------------------- /draw_experiment1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/draw_experiment1.py -------------------------------------------------------------------------------- /draw_experiment2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/draw_experiment2.py -------------------------------------------------------------------------------- /draw_experiment3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/draw_experiment3.py -------------------------------------------------------------------------------- /include/DisparityPlane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/include/DisparityPlane.h -------------------------------------------------------------------------------- /include/Matrix2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/include/Matrix2D.h -------------------------------------------------------------------------------- /include/PatchMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/include/PatchMatch.h -------------------------------------------------------------------------------- /include/PatchMatchBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/include/PatchMatchBase.h -------------------------------------------------------------------------------- /include/PatchMatchRedBlack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/include/PatchMatchRedBlack.h -------------------------------------------------------------------------------- /include/PatchMatchRowColSweep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/include/PatchMatchRowColSweep.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/DisparityPlane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/DisparityPlane.cpp -------------------------------------------------------------------------------- /src/Matrix2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/Matrix2D.cpp -------------------------------------------------------------------------------- /src/PatchMatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/PatchMatch.cpp -------------------------------------------------------------------------------- /src/PatchMatchBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/PatchMatchBase.cpp -------------------------------------------------------------------------------- /src/PatchMatchRedBlack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/PatchMatchRedBlack.cpp -------------------------------------------------------------------------------- /src/PatchMatchRowColSweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/PatchMatchRowColSweep.cpp -------------------------------------------------------------------------------- /src/pm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/pm.cpp -------------------------------------------------------------------------------- /src/pm_red_black.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/pm_red_black.cpp -------------------------------------------------------------------------------- /src/pm_rows_cols_sweep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nebula-beta/PatchMatch/HEAD/src/pm_rows_cols_sweep.cpp --------------------------------------------------------------------------------