├── .clang-format ├── .gitignore ├── 01-structured-light-with-blender-and-halide ├── CMakeLists.txt ├── README.md ├── images │ ├── suzanne0001.png │ ├── suzanne0002.png │ ├── suzanne0003.png │ ├── suzanne0004.png │ ├── suzanne0005.png │ ├── suzanne0006.png │ └── suzanne0007.png ├── scene │ └── structured-light.blend ├── scripts │ └── create_patterns.py └── src │ └── main.cpp └── README.md /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | run.sh 2 | build 3 | compile_commands.json 4 | .clangd 5 | -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/CMakeLists.txt -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/README.md -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0001.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0002.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0003.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0004.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0005.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0006.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/images/suzanne0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/images/suzanne0007.png -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/scene/structured-light.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/scene/structured-light.blend -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/scripts/create_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/scripts/create_patterns.py -------------------------------------------------------------------------------- /01-structured-light-with-blender-and-halide/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/01-structured-light-with-blender-and-halide/src/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragly/structured-light/HEAD/README.md --------------------------------------------------------------------------------