├── .github └── workflows │ └── release.yml ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── docs ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg ├── pighead.gif ├── pighead_post.png ├── pighead_pre.png ├── pighead_settings.png ├── texture-from-attribute_ui.png ├── texture-synthesis_attribute_example.gif ├── texture-synthesis_attribute_example.png ├── texture-synthesis_examples.png ├── texture-synthesis_ui.png ├── tile_pbr.gif └── tile_pbr_pdg_process.gif ├── hip ├── input │ ├── bark_brown_02 - Texture Haven.url │ └── bark_brown_02_1k_jpg.zip ├── texture-synthesis_attribute_example.hip ├── texture-synthesis_examples.hip ├── texture-synthesis_pighead.hip └── texture-synthesis_tile_pbr.hip ├── otls ├── texture_from_attribute.hda └── texture_synthesis.hda └── texture-synthesis-houdini.json /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/README.md -------------------------------------------------------------------------------- /docs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/1.jpg -------------------------------------------------------------------------------- /docs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/2.jpg -------------------------------------------------------------------------------- /docs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/3.jpg -------------------------------------------------------------------------------- /docs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/4.jpg -------------------------------------------------------------------------------- /docs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/5.jpg -------------------------------------------------------------------------------- /docs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/6.jpg -------------------------------------------------------------------------------- /docs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/7.jpg -------------------------------------------------------------------------------- /docs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/8.jpg -------------------------------------------------------------------------------- /docs/pighead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/pighead.gif -------------------------------------------------------------------------------- /docs/pighead_post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/pighead_post.png -------------------------------------------------------------------------------- /docs/pighead_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/pighead_pre.png -------------------------------------------------------------------------------- /docs/pighead_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/pighead_settings.png -------------------------------------------------------------------------------- /docs/texture-from-attribute_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/texture-from-attribute_ui.png -------------------------------------------------------------------------------- /docs/texture-synthesis_attribute_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/texture-synthesis_attribute_example.gif -------------------------------------------------------------------------------- /docs/texture-synthesis_attribute_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/texture-synthesis_attribute_example.png -------------------------------------------------------------------------------- /docs/texture-synthesis_examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/texture-synthesis_examples.png -------------------------------------------------------------------------------- /docs/texture-synthesis_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/texture-synthesis_ui.png -------------------------------------------------------------------------------- /docs/tile_pbr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/tile_pbr.gif -------------------------------------------------------------------------------- /docs/tile_pbr_pdg_process.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/docs/tile_pbr_pdg_process.gif -------------------------------------------------------------------------------- /hip/input/bark_brown_02 - Texture Haven.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://texturehaven.com/tex/?c=wood&t=bark_brown_02 3 | -------------------------------------------------------------------------------- /hip/input/bark_brown_02_1k_jpg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/hip/input/bark_brown_02_1k_jpg.zip -------------------------------------------------------------------------------- /hip/texture-synthesis_attribute_example.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/hip/texture-synthesis_attribute_example.hip -------------------------------------------------------------------------------- /hip/texture-synthesis_examples.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/hip/texture-synthesis_examples.hip -------------------------------------------------------------------------------- /hip/texture-synthesis_pighead.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/hip/texture-synthesis_pighead.hip -------------------------------------------------------------------------------- /hip/texture-synthesis_tile_pbr.hip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/hip/texture-synthesis_tile_pbr.hip -------------------------------------------------------------------------------- /otls/texture_from_attribute.hda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/otls/texture_from_attribute.hda -------------------------------------------------------------------------------- /otls/texture_synthesis.hda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/otls/texture_synthesis.hda -------------------------------------------------------------------------------- /texture-synthesis-houdini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manuelkoester/texture-synthesis-houdini/HEAD/texture-synthesis-houdini.json --------------------------------------------------------------------------------