├── BRDFNet ├── BRDFNetTraining.py ├── BRDF_Net_Config.ini ├── RenderBRDFNetData.py ├── TestBRDF.py ├── folderPath.txt ├── homogeneous_vis.ini ├── lvlist_1.txt └── template.html ├── Readme.md ├── Render ├── BRDFEvaluate.h ├── FastRendererCUDA.py ├── GeometryEvaluate.h ├── PixelShader.cu ├── exception.h ├── helper_cuda.h ├── helper_functions.h ├── helper_image.h ├── helper_math.h ├── helper_string.h ├── helper_timer.h ├── plane.obj ├── sphere.obj └── sphere_normal.pfm ├── SVBRDFNet ├── RenderSVBRDFDataset.py ├── SVBRDFNetTraining.py ├── SVBRDF_Net_Config.ini ├── TestSVBRDF.py ├── folderPath_SVBRDF.txt └── template_visSVBRDFNet_Real.html └── Utils ├── NetClass.py ├── solver_template.prototxt └── utils.py /BRDFNet/BRDFNetTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/BRDFNetTraining.py -------------------------------------------------------------------------------- /BRDFNet/BRDF_Net_Config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/BRDF_Net_Config.ini -------------------------------------------------------------------------------- /BRDFNet/RenderBRDFNetData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/RenderBRDFNetData.py -------------------------------------------------------------------------------- /BRDFNet/TestBRDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/TestBRDF.py -------------------------------------------------------------------------------- /BRDFNet/folderPath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/folderPath.txt -------------------------------------------------------------------------------- /BRDFNet/homogeneous_vis.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/homogeneous_vis.ini -------------------------------------------------------------------------------- /BRDFNet/lvlist_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/lvlist_1.txt -------------------------------------------------------------------------------- /BRDFNet/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/BRDFNet/template.html -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Readme.md -------------------------------------------------------------------------------- /Render/BRDFEvaluate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/BRDFEvaluate.h -------------------------------------------------------------------------------- /Render/FastRendererCUDA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/FastRendererCUDA.py -------------------------------------------------------------------------------- /Render/GeometryEvaluate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/GeometryEvaluate.h -------------------------------------------------------------------------------- /Render/PixelShader.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/PixelShader.cu -------------------------------------------------------------------------------- /Render/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/exception.h -------------------------------------------------------------------------------- /Render/helper_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/helper_cuda.h -------------------------------------------------------------------------------- /Render/helper_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/helper_functions.h -------------------------------------------------------------------------------- /Render/helper_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/helper_image.h -------------------------------------------------------------------------------- /Render/helper_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/helper_math.h -------------------------------------------------------------------------------- /Render/helper_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/helper_string.h -------------------------------------------------------------------------------- /Render/helper_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/helper_timer.h -------------------------------------------------------------------------------- /Render/plane.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/plane.obj -------------------------------------------------------------------------------- /Render/sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/sphere.obj -------------------------------------------------------------------------------- /Render/sphere_normal.pfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Render/sphere_normal.pfm -------------------------------------------------------------------------------- /SVBRDFNet/RenderSVBRDFDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/SVBRDFNet/RenderSVBRDFDataset.py -------------------------------------------------------------------------------- /SVBRDFNet/SVBRDFNetTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/SVBRDFNet/SVBRDFNetTraining.py -------------------------------------------------------------------------------- /SVBRDFNet/SVBRDF_Net_Config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/SVBRDFNet/SVBRDF_Net_Config.ini -------------------------------------------------------------------------------- /SVBRDFNet/TestSVBRDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/SVBRDFNet/TestSVBRDF.py -------------------------------------------------------------------------------- /SVBRDFNet/folderPath_SVBRDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/SVBRDFNet/folderPath_SVBRDF.txt -------------------------------------------------------------------------------- /SVBRDFNet/template_visSVBRDFNet_Real.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/SVBRDFNet/template_visSVBRDFNet_Real.html -------------------------------------------------------------------------------- /Utils/NetClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Utils/NetClass.py -------------------------------------------------------------------------------- /Utils/solver_template.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Utils/solver_template.prototxt -------------------------------------------------------------------------------- /Utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msraig/self-augmented-net/HEAD/Utils/utils.py --------------------------------------------------------------------------------