├── .gitattributes ├── .gitignore ├── Readme.md ├── data ├── brdfs │ └── alum-bronze.txt ├── candidate normals │ └── canNormal.mat ├── surface normals │ ├── bunnyNormal.mat │ ├── bunnyNormal.png │ ├── bunny_mask.mat │ └── testNormal.mat └── syn_brdf │ └── brdf.mat ├── include ├── brdfEst.m ├── brdfMapping.m ├── brdf_solver_cvx.m ├── calAngE.m ├── genBmatrix.m ├── genNormals.m ├── genVMap.m ├── initialize.m ├── ms_normalEst.m ├── processPsData.m ├── pseudoColor.m └── relight.m ├── lighting └── lights.txt ├── scripts ├── demo_brdflEst.m ├── demo_generateB.m ├── demo_normalEst.m └── demo_testBenchMark.m └── setup.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/.gitignore -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/Readme.md -------------------------------------------------------------------------------- /data/brdfs/alum-bronze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/brdfs/alum-bronze.txt -------------------------------------------------------------------------------- /data/candidate normals/canNormal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/candidate normals/canNormal.mat -------------------------------------------------------------------------------- /data/surface normals/bunnyNormal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/surface normals/bunnyNormal.mat -------------------------------------------------------------------------------- /data/surface normals/bunnyNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/surface normals/bunnyNormal.png -------------------------------------------------------------------------------- /data/surface normals/bunny_mask.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/surface normals/bunny_mask.mat -------------------------------------------------------------------------------- /data/surface normals/testNormal.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/surface normals/testNormal.mat -------------------------------------------------------------------------------- /data/syn_brdf/brdf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/data/syn_brdf/brdf.mat -------------------------------------------------------------------------------- /include/brdfEst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/brdfEst.m -------------------------------------------------------------------------------- /include/brdfMapping.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/brdfMapping.m -------------------------------------------------------------------------------- /include/brdf_solver_cvx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/brdf_solver_cvx.m -------------------------------------------------------------------------------- /include/calAngE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/calAngE.m -------------------------------------------------------------------------------- /include/genBmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/genBmatrix.m -------------------------------------------------------------------------------- /include/genNormals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/genNormals.m -------------------------------------------------------------------------------- /include/genVMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/genVMap.m -------------------------------------------------------------------------------- /include/initialize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/initialize.m -------------------------------------------------------------------------------- /include/ms_normalEst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/ms_normalEst.m -------------------------------------------------------------------------------- /include/processPsData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/processPsData.m -------------------------------------------------------------------------------- /include/pseudoColor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/pseudoColor.m -------------------------------------------------------------------------------- /include/relight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/include/relight.m -------------------------------------------------------------------------------- /lighting/lights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/lighting/lights.txt -------------------------------------------------------------------------------- /scripts/demo_brdflEst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/scripts/demo_brdflEst.m -------------------------------------------------------------------------------- /scripts/demo_generateB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/scripts/demo_generateB.m -------------------------------------------------------------------------------- /scripts/demo_normalEst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/scripts/demo_normalEst.m -------------------------------------------------------------------------------- /scripts/demo_testBenchMark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/scripts/demo_testBenchMark.m -------------------------------------------------------------------------------- /setup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huizhuo1987/ICCP_DL_PS/HEAD/setup.m --------------------------------------------------------------------------------